forked from rtomayko/git-sh
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgit-sh-aliases.bash
110 lines (99 loc) · 3.08 KB
/
git-sh-aliases.bash
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#!/bin/bash
# These are the standard set of aliases enabled by default in all
# git-sh sessions. Aliases defined in the gitconfig [alias] section override
# these.
gitalias a='git add'
gitalias st='git status'
gitalias b='git branch'
gitalias c='git checkout'
gitalias d='git diff'
gitalias f='git fetch --prune'
gitalias k='git cherry-pick'
gitalias l='git log --pretty=oneline --abbrev-commit'
gitalias n='git commit --verbose --amend'
gitalias r='git remote'
gitalias s='git commit --dry-run --short'
gitalias t='git diff --cached'
gitalias co='git commit'
gitalias chpick='git cherry-pick'
# git add and the staging area
gitalias a='git add'
gitalias aa='git add --update' # mnemonic: "add all"
gitalias st='git status -s'
gitalias stage='git add'
gitalias ap='git add --patch'
gitalias p='git diff --cached' # mnemonic: "patch"
gitalias unstage='git reset HEAD'
# commits and history
gitalias ci='git commit --verbose'
gitalias ca='git commit --verbose --all'
gitalias amend='git commit --verbose --amend'
gitalias n='git commit --verbose --amend'
gitalias k='git cherry-pick'
gitalias re='git rebase --interactive'
gitalias pop='git reset --soft HEAD^'
gitalias peek='git log --patch --format=full --max-count=1'
# git fetch
gitalias f='git fetch'
gitalias pl='git pull' # mnemonic: pull merge
gitalias pr='git pull --rebase' # mnemonic: pull rebase
gitalias ph='git push' # mnemonic: pull merge
# git diff
gitalias d='git diff'
gitalias ds='git diff --stat' # mnemonic: "diff stat"
# git reset
gitalias hard='git reset --hard'
gitalias soft='git reset --soft'
gitalias scrap='git checkout HEAD'
# hub pass-through aliases for new commands
which hub > /dev/null 2> /dev/null && {
gitalias fork='hub fork'
gitalias pull-request='hub pull-request'
gitalias create='hub create'
gitalias browse='hub browse'
gitalias compare='hub compare'
}
# mv handler function
# Smartly directs files to 'git mv' or system 'mv' command based on whether they are tracked or not
function git_mv {
for f in "$@"; do
if [[ $(echo "$f" | head -c 1) = "-" ]] ; then
# Save command option arguments
args="$args $f"
else
# Process file arguments, but skip over last arg (move destination)
if [[ "$f" != "${@: -1}" ]] ; then
if [[ -z $(git ls-files "$f" --error-unmatch 2> /dev/null) ]] ; then
# Send untracked files to bash mv command
command mv $args "$f" "${@: -1}"
else
# Send tracked files to git mv command
git mv $args "$f" "${@: -1}"
fi
fi
fi
done
unset args
}
alias mv='git_mv'
# rm handler function
# Smartly directs files to 'git rm' or system 'rm' command based on whether they are tracked or not
function git_rm {
for f in "$@"; do
if [[ $(echo "$f" | head -c 1) = "-" ]] ; then
# Save command option arguments
args="$args $f"
else
# Process file arguments
if [[ -z $(git ls-files "$f" --error-unmatch 2> /dev/null) ]] ; then
# Send untracked files to bash mv command
command rm $args "$f"
else
# Send tracked files to git mv command
git rm $args "$f"
fi
fi
done
unset args
}
alias rm='git_rm'