Actually got gitChangeLog.bat working

It works now to get the shell script version working
This commit is contained in:
DarkGuardsman 2013-09-16 20:45:27 -04:00
parent 1cae57399d
commit bca6cc0262

View file

@ -1,6 +1,7 @@
cd ..
IF EXIST LastBuildData.txt (
git log --pretty="%s" --since={LastBuildData.txt} >> changeLog.txt
Set /p "s=" <"LastBuildData.txt"
git log --after={"%s%"} > changeLog.txt
)
echo %date:~10,4%-%date:~4,2%-%date:~7,2% > LastBuildData.txt
echo "%date:~10,4%-%date:~4,2%-%date:~7,2%"> LastBuildData.txt
PAUSE