git reflog Display recent Git operation records
git reflog head@{0}
git svn clone Check out from SVN repository to local Git repository
git svn clone -T trunk -b branch -t tags
git svn dcommit Commit from local Git repository to SVN
git svn dcommit --rmdir
git stash Save current changes to staging area (push to stack)
git stash pop Retrieve the most recent saved changes from staging area (pop from stack)
git gc --aggressive Compress Git repository with maximum compression
git bundle create Package the entire Git project as a bundle file for easy transfer or long-term preservation
git bundle create GIT_BUNDLE_FILE --all
git add Add files to commit
git add *.* Add all new files to the commit
git add -u Remove all deleted files from the commit
git commit Commit history
git commit -m "Commit Log"