Last active
July 22, 2017 09:07
-
-
Save tctony/7eee5fd2e23bd7f2f4ae884479f90e00 to your computer and use it in GitHub Desktop.
gitconfig
This file contains hidden or 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
| [filter "lfs"] | |
| clean = git-lfs clean %f | |
| smudge = git-lfs smudge %f | |
| required = true | |
| [push] | |
| default = simple | |
| [alias] | |
| co = checkout | |
| br = branch | |
| cm = commit | |
| [filter "lfs"] | |
| clean = git-lfs clean %f | |
| smudge = git-lfs smudge %f | |
| required = true | |
| [push] | |
| default = simple | |
| [alias] | |
| co = checkout | |
| br = branch | |
| cm = commit | |
| st = status | |
| unstage = reset HEAD -- | |
| last = log -1 HEAD | |
| ff = merge --ff-only -- | |
| [branch] | |
| autosetuprebase = always |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment