Last active
December 22, 2015 01:39
-
-
Save kladov/6397926 to your computer and use it in GitHub Desktop.
Prepare for work with 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
#~/.bashrc | |
alias go='git checkout ' |
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
#~/.gitconfig | |
[user] | |
email = [email protected] | |
name = Boris O Kladov | |
[alias] | |
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short | |
co = checkout | |
ci = commit | |
st = status | |
br = branch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment