-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adds git colors, formats, and aliases + adds GOPATH to PATH
- Loading branch information
1 parent
8371c52
commit 0b4c9da
Showing
2 changed files
with
31 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,31 @@ | ||
[user] | ||
name = Brian Bland | ||
email = [email protected] | ||
[log] | ||
decorate = true | ||
[push] | ||
default = simple | ||
[branch] | ||
autosetuprebase = always | ||
[color] | ||
ui = true | ||
[color "branch"] | ||
current = yellow reverse | ||
local = yellow | ||
remote = green | ||
[color "diff"] | ||
meta = yellow | ||
frag = cyan bold | ||
old = red bold | ||
new = green bold | ||
[color "status"] | ||
added = yellow | ||
changed = green | ||
untracked = cyan | ||
[log] | ||
decorate = short | ||
[alias] | ||
rma = !git ls-files -d | xargs git rm | ||
glog = log --all --date-order --graph --format=\"%C(yellow bold)%h %C(cyan bold)%an%C(red bold)%d%Creset %s %C(green bold)%N%Creset\" | ||
wdiff = diff --color-words | ||
track = !git branch -u origin/$(git symbolic-ref --short HEAD) |
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