This is a draft cheat sheet. It is a work in progress and is not finished yet.
TFS Batch Checkout
tfs checkout *.vcxproj /recursive |
Must be run from the VS Developer Console (in Start Menu)
Correct Log Messages
git commit --amend --date "#" |
GIT_COMMITTER_DATE="#" |
GIT_AUTHOR_DATE |
GIT_AUTHOR_EMAIL |
GIT_AUTHOR_NAME |
Remotes
git remote |
git pull <server> <branch> |
git checkout --track <server>/<branch> |
Push Sequence
git fetch <server> |
git push <server> <branch> |
git push <server> --delete <branch> |
|