-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitconfig
65 lines (45 loc) · 2.15 KB
/
.gitconfig
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[user]
email = [email protected]
name = Tyler Peterson
[alias]
# Add and remove all changes, note how this alias is calling another alias
addremove = !git r && git add . --all
# Show all of my configured aliases
aliases = !git config --list | grep 'alias\\.' | sed 's/alias\\.\\([^=]*\\)=\\(.*\\)/\\1\\ \t => \\2/' | sort
# For when you made that commit a bit too early, amend
amend = !git log -n 1 --pretty=tformat:%s%n%n%b | git commit -F - --amend
# Show all branches
br = branch -av
# Show the current branch name (usefull for shell prompts)
brname = !git branch | grep "^*" | awk '{ print $2 }'
# Delete a branch
delb = branch -D
# Which files are receiving the most "love"
churn = !git log --all -M -C --name-only --format='format:' "$@" | sort | grep -v '^$' | uniq -c | sort | awk 'BEGIN {print "count,file"} {print $1 "," $2}'
# View the log and diff for a commit (previous if no SHA1 provided)
details = log -n1 -p --format=fuller
# Save a repo as a tarball
export = archive -o latest.tar.gz -9 --prefix=latest/
# Unstage changes from the index
unstage = reset HEAD --
# View a pretty git log with branch tree
g = !git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative
# Return a list of commit SHA1s
l = "!f() { git log $* | grep '^commit ' | cut -f 2 -d ' '; }; f"
# Remove deleted files
r = !git ls-files -z --deleted | xargs -0 git rm
# Return the repository's root directory (usefull for shell prompts)
root = rev-parse --show-toplevel
# Update all submodules
subup = submodule update --init
# List all tags
tags = tag -l
# Start a new local repository and perform initial commit
this = !git init && git add . && git commit -m \"Initial commit.\"
# Thin out older metadata within the repository, reduceses filesystem footprint
trim = !git reflog expire --expire=now --all && git gc --prune=now
nuke = !git reset --hard && git clean -fdx
git = !exec git
[core]
editor = vim
pager = diff-so-fancy | less --tabs=4 -RFX