Created
June 7, 2012 02:18
-
-
Save toriaezunama/2886118 to your computer and use it in GitHub Desktop.
#git
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#### View the change history of a file #### | |
gitk [filename] | |
#### How to grep in the git history #### | |
git grep <regexp> $(git rev-list --all) | |
#### Changing the message on the last commit | |
git commit --amend -m "New message" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment