forked from peterhurford/git-aliases.zsh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgit-aliases.plugin.zsh
executable file
·205 lines (166 loc) · 4.13 KB
/
git-aliases.plugin.zsh
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
pull_or_push() {
if [ $# -eq 2 ]; then
git $1 $2 `git rev-parse --abbrev-ref HEAD`
else
git $1 origin `git rev-parse --abbrev-ref HEAD`
fi
}
pull() { pull_or_push "pull" $@ }
push() { pull_or_push "push" $@ }
alias gf='git fetch'
alias gb='git branch'
alias unmerged="git branch --no-merged"
alias plog="git log --oneline --decorate"
reset() {
if [ $# -eq 0 ]; then
git reset --hard
else
local curr_branch=`git rev-parse --abbrev-ref HEAD`
git checkout $curr_branch $1
fi
}
flog() {
git log -p $1
}
status() {
if [ "$GIT_ALIASES_SHORTER_GIT_STATUS" -ne 1 ]; then; git status
else; git status -sb; fi
}
alias s='status'
co() {
git fetch
git checkout "$1"
if [ "$GIT_ALIASES_SILENCE_GIT_STATUS" -ne 1 ]; then; git status; fi
}
compdef _git co=git-checkout
cob() {
git checkout -b "$1"
if [ "$GIT_ALIASES_AUTOPUSH_NEW_BRANCH" -eq 1 ]; then
git add "$(git rev-parse --show-toplevel)" && git commit -a -m "Started $1" && push
fi
}
cobm() {
git checkout master && pull && git checkout -b "$1"
}
cobd() {
git checkout dev && pull && git checkout -b "$1"
}
corbm() {
corp master && git checkout -b "$1"
}
corbd() {
corp dev && git checkout -b "$1"
}
cop() {
git fetch && git checkout "$1" && pull && git fetch
if [ "$GIT_ALIASES_SILENCE_GIT_STATUS" -ne 1 ]; then; git status; fi
}
compdef _git cop=git-checkout
com() {
co master
}
copm() {
cop master
}
rp() {
pull && git fetch && rb
}
rb() {
bundle install && bundle exec rake db:migrate && bundle exec rake db:test:prepare && bundle exec rake db:seed
}
corp() {
co "$1" && rp
}
compdef _git corp=git-checkout
backmerge_branch() {
local curr_branch=`git rev-parse --abbrev-ref HEAD`
pull && cop $1 && co $curr_branch && git merge $1 -m 'Backmerged master' && push
echo 'Backmerge completed.'
}
backmerge() {
backmerge_branch 'master'
}
backmerge_dev() {
backmerge_branch 'dev'
}
ruby_backmerge() {
local curr_branch=`git rev-parse --abbrev-ref HEAD`
pull && corp master && reset && co $curr_branch && git merge origin/master -m 'Backmerged master' && push
echo 'Backmerge completed. You may have to restart your local server.'
}
backmerge_all() {
git fetch
local curr_branch=`git rev-parse --abbrev-ref HEAD`
for branch in $(git for-each-ref --format='%(refname)' refs/heads/); do
local branch=${branch/refs\/heads\//}
echo "!!! Backmerging $branch ..."
cop master
co $branch && git merge origin/master -m 'Backmerged master' && push
done
co curr_branch
}
rebase() {
local curr_branch=`git rev-parse --abbrev-ref HEAD`
cop master && cop $curr_branch && git rebase master
echo "!!! Rebase master -> $curr_branch started. Continue interactively ..."
}
continue_rebase() {
git add .; git rebase --continue
}
end_rebase() {
local curr_branch=`git rev-parse --abbrev-ref HEAD`
git push -f origin $curr_branch
}
release() {
if [ $# -eq 0 ]; then echo "You must pass a tag to release.";
else cop master && git tag $1 && git push origin $1;
fi
}
deploy() {
if [ -f 'bin/deploy' ]; then bin/deploy; else; git push heroku master; fi
}
alias deproy=deploy
dif() {
if [ "$GIT_ALIASES_ICDIFF" -eq 1 ]; then; git icdiff
elif [ "$GIT_ALIASES_ICDIFF" -eq 2 ]; then; git difftool --extcmd icdiff
else; git diff; fi
git status
}
prune() {
git branch -D "$1" && git push origin --delete "$1"
}
clone() {
local yes_cd=true
while getopts "d:" OPTION
do
case $OPTION in
d)
local yes_cd=false
shift
;;
esac
done
if [[ -z $2 ]]; then
local repo_name=$1
while [ "${repo_name%%/*}" != "$repo_name" ]; do
repo_name=${repo_name#*/}
done
repo_name=${repo_name%.*}
git clone $1
if $yes_cd; then; cd $repo_name; fi
else
if [[ $# -eq 3 ]]; then
git clone [email protected]:$1/$2.git $3
if $yes_cd; then; cd $3; fi
else
git clone [email protected]:$1/$2.git
if $yes_cd; then; cd $2; fi
fi
fi
}
oldbranches() {
if [[ $# -eq 0 ]]; then; local hed=10; else; local hed=$1; fi
echo $hed
echo $#
git for-each-ref --sort=committerdate --format='No updates to %(refname:short) since %(committerdate:short)...' | head -n $hed
}