Uh oh!
There was an error while loading. Please reload this page.
forked from nicolashery/mac-dev-setup
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitconfig
More file actions
Latest commit
30 lines (27 loc) · 782 Bytes
/
Copy path.gitconfig
File metadata and controls
30 lines (27 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
[alias]
# Show verbose output about tags, branches or remotes
tags=tag -l
branches=branch -a
remotes=remote -v
# Pretty log output
hist=log --graph --pretty=format:'%Cred%h%Creset %s%C(yellow)%d%Creset %Cgreen(%cr)%Creset [%an]' --abbrev-commit --date=relative
[color]
# Use colors in Git commands that are capable of colored output when outputting to the terminal
ui=auto
[color "branch"]
current=yellowreverse
local=yellow
remote=green
[color "diff"]
meta=yellowbold
frag=magentabold
old=redbold
new=greenbold
[color "status"]
added=yellow
changed=green
untracked=cyan
# Use `origin` as the default remote on the `master` branch in all cases
[branch "master"]
remote=origin
merge=refs/heads/master