Changes between Version 120 and Version 121 of DeveloperGuidelines/Git
- Timestamp:
- 09/22/21 16:09:23 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Git
v120 v121 470 470 Install [http://sourceforge.net/projects/console/ Console] & [http://www.sourcegear.com/diffmerge/downloads.php Diffmerge] & [http://markembling.info/2009/09/my-ideal-powershell-prompt-with-git-integration configure Powershell]. 471 471 === Developer Tools === 472 {{{.git/hooks/pre-commit}}} should run {{{version.py}}} to update the {{{VERSION}}} file on commit 472 {{{.git/hooks/pre-commit}}} should run {{{version.py}}} to update the {{{VERSION}}} file on commit: 473 {{{ 474 #!/bin/sh; C:/Program\ Files/Git/usr/bin/sh.exe 475 476 # Update VERSION 477 python version.py 478 479 # Add the modified file to staging to include in the commit. 480 echo "VERSION" | xargs git add 481 exit 0 482 }}} 483 473 484 {{{.gitattributes}}} in the repo is set to keeplocal on merge 474 485