Skip to content

Instantly share code, notes, and snippets.

@supaket
Created May 17, 2015 04:05
Show Gist options
  • Save supaket/9d38c1245e86440b934b to your computer and use it in GitHub Desktop.
Save supaket/9d38c1245e86440b934b to your computer and use it in GitHub Desktop.
setup git and it is ready for work.
git config --global user.name "Your Name"
git config --global user.email “[email protected]"
Unix/Mac users:
git config --global core.autocrlf input
git config --global core.safecrlf true
Windows users:
git config --global core.autocrlf true
git config --global core.safecrlf true
@supaket
Copy link
Author

supaket commented May 17, 2015

git log --oneline --abbrev-commit --all --graph --decorate

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment