Mercurial > dotfiles
annotate .shell.d/50.hg_functions.sh @ 253:93b24cdd2cce
hg funcs: rename mq-snapshot to appease bash
author | Augie Fackler <durin42@gmail.com> |
---|---|
date | Mon, 17 May 2010 10:21:12 -0500 |
parents | 369d869082fd |
children | 142fb39e4e55 |
rev | line source |
---|---|
210
0590f34b92a0
shell.d: split hg and git functions out of vcs functions
Augie Fackler <durin42@gmail.com>
parents:
204
diff
changeset
|
1 ## hg_functions |
0590f34b92a0
shell.d: split hg and git functions out of vcs functions
Augie Fackler <durin42@gmail.com>
parents:
204
diff
changeset
|
2 # various hg utility functions |
0 | 3 |
60
87b2ccf6ec44
Improved mq now works anywhere inside the parent hg repo.
Augie Fackler <durin42@gmail.com>
parents:
58
diff
changeset
|
4 function mq () { |
87b2ccf6ec44
Improved mq now works anywhere inside the parent hg repo.
Augie Fackler <durin42@gmail.com>
parents:
58
diff
changeset
|
5 ( wcroot ; |
87b2ccf6ec44
Improved mq now works anywhere inside the parent hg repo.
Augie Fackler <durin42@gmail.com>
parents:
58
diff
changeset
|
6 hg -R .hg/patches $@ |
87b2ccf6ec44
Improved mq now works anywhere inside the parent hg repo.
Augie Fackler <durin42@gmail.com>
parents:
58
diff
changeset
|
7 ) |
87b2ccf6ec44
Improved mq now works anywhere inside the parent hg repo.
Augie Fackler <durin42@gmail.com>
parents:
58
diff
changeset
|
8 } |
13
c22ca1514f3b
Add an alias to ease working with mq repos.
Augie Fackler <durin42@gmail.com>
parents:
10
diff
changeset
|
9 |
253
93b24cdd2cce
hg funcs: rename mq-snapshot to appease bash
Augie Fackler <durin42@gmail.com>
parents:
232
diff
changeset
|
10 function mq_snapshot () { |
200
a563c21235ad
vcs-functions: add mq-snapshot
Augie Fackler <durin42@gmail.com>
parents:
195
diff
changeset
|
11 mq ci -m "Applied on $(hg log -r qparent --template '{node|short}\n')" |
a563c21235ad
vcs-functions: add mq-snapshot
Augie Fackler <durin42@gmail.com>
parents:
195
diff
changeset
|
12 } |
253
93b24cdd2cce
hg funcs: rename mq-snapshot to appease bash
Augie Fackler <durin42@gmail.com>
parents:
232
diff
changeset
|
13 alias mq-snapshot=mq_snapshot |
200
a563c21235ad
vcs-functions: add mq-snapshot
Augie Fackler <durin42@gmail.com>
parents:
195
diff
changeset
|
14 |
228
0c8939baa35c
hg-rebase-all: new function to rebase all bookmarked revisions
Augie Fackler <durin42@gmail.com>
parents:
210
diff
changeset
|
15 function hg_rebase_all () { |
232
369d869082fd
hg-rebase-all: corrected wc cleanliness check
Augie Fackler <durin42@gmail.com>
parents:
231
diff
changeset
|
16 hg sum | egrep 'commit: .*\(clean\)$' || (echo 'abort: wc not clean' ; return 1) || return 1 |
228
0c8939baa35c
hg-rebase-all: new function to rebase all bookmarked revisions
Augie Fackler <durin42@gmail.com>
parents:
210
diff
changeset
|
17 if [ "x$1" = "x" ] ; then |
0c8939baa35c
hg-rebase-all: new function to rebase all bookmarked revisions
Augie Fackler <durin42@gmail.com>
parents:
210
diff
changeset
|
18 echo 'abort: give destination for rebase' |
0c8939baa35c
hg-rebase-all: new function to rebase all bookmarked revisions
Augie Fackler <durin42@gmail.com>
parents:
210
diff
changeset
|
19 return 2 |
0c8939baa35c
hg-rebase-all: new function to rebase all bookmarked revisions
Augie Fackler <durin42@gmail.com>
parents:
210
diff
changeset
|
20 fi |
0c8939baa35c
hg-rebase-all: new function to rebase all bookmarked revisions
Augie Fackler <durin42@gmail.com>
parents:
210
diff
changeset
|
21 if [ "$1" = "tip" ] ; then |
0c8939baa35c
hg-rebase-all: new function to rebase all bookmarked revisions
Augie Fackler <durin42@gmail.com>
parents:
210
diff
changeset
|
22 echo 'abort: tip is essentially never what you mean here' |
0c8939baa35c
hg-rebase-all: new function to rebase all bookmarked revisions
Augie Fackler <durin42@gmail.com>
parents:
210
diff
changeset
|
23 return 2 |
0c8939baa35c
hg-rebase-all: new function to rebase all bookmarked revisions
Augie Fackler <durin42@gmail.com>
parents:
210
diff
changeset
|
24 fi |
0c8939baa35c
hg-rebase-all: new function to rebase all bookmarked revisions
Augie Fackler <durin42@gmail.com>
parents:
210
diff
changeset
|
25 for b in $(hg book | sed 's/^ \*/ /' | awk '{ print $1 }') ; do |
231
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
26 hg co --clean $b |
228
0c8939baa35c
hg-rebase-all: new function to rebase all bookmarked revisions
Augie Fackler <durin42@gmail.com>
parents:
210
diff
changeset
|
27 hg rebase -d "$1" |
0c8939baa35c
hg-rebase-all: new function to rebase all bookmarked revisions
Augie Fackler <durin42@gmail.com>
parents:
210
diff
changeset
|
28 done |
0c8939baa35c
hg-rebase-all: new function to rebase all bookmarked revisions
Augie Fackler <durin42@gmail.com>
parents:
210
diff
changeset
|
29 } |
0c8939baa35c
hg-rebase-all: new function to rebase all bookmarked revisions
Augie Fackler <durin42@gmail.com>
parents:
210
diff
changeset
|
30 alias hg-rebase-all=hg_rebase_all |
0c8939baa35c
hg-rebase-all: new function to rebase all bookmarked revisions
Augie Fackler <durin42@gmail.com>
parents:
210
diff
changeset
|
31 |
133
5b0b8ad2cb2c
vcs_functions: some versions of the shell don't like - in function names.
Augie Fackler <durin42@gmail.com>
parents:
129
diff
changeset
|
32 function hgsvnmergebranch() { |
61
79c2c3932362
Add hg-svn-merge-branch which does all the steps of merging an hg branch for me.
Augie Fackler <durin42@gmail.com>
parents:
60
diff
changeset
|
33 local targetrev |
79c2c3932362
Add hg-svn-merge-branch which does all the steps of merging an hg branch for me.
Augie Fackler <durin42@gmail.com>
parents:
60
diff
changeset
|
34 local striprev |
79c2c3932362
Add hg-svn-merge-branch which does all the steps of merging an hg branch for me.
Augie Fackler <durin42@gmail.com>
parents:
60
diff
changeset
|
35 targetrev=$(hg id | cut -d ' ' -f 1) |
79c2c3932362
Add hg-svn-merge-branch which does all the steps of merging an hg branch for me.
Augie Fackler <durin42@gmail.com>
parents:
60
diff
changeset
|
36 hg merge $1 |
79c2c3932362
Add hg-svn-merge-branch which does all the steps of merging an hg branch for me.
Augie Fackler <durin42@gmail.com>
parents:
60
diff
changeset
|
37 hg ci -m "Merging $1" |
79c2c3932362
Add hg-svn-merge-branch which does all the steps of merging an hg branch for me.
Augie Fackler <durin42@gmail.com>
parents:
60
diff
changeset
|
38 striprev=$(hg id | cut -d ' ' -f 1) |
79c2c3932362
Add hg-svn-merge-branch which does all the steps of merging an hg branch for me.
Augie Fackler <durin42@gmail.com>
parents:
60
diff
changeset
|
39 hg co $targetrev |
79c2c3932362
Add hg-svn-merge-branch which does all the steps of merging an hg branch for me.
Augie Fackler <durin42@gmail.com>
parents:
60
diff
changeset
|
40 hg diff -r$targetrev:$striprev | hg import - -m "Merged branch $1." |
79c2c3932362
Add hg-svn-merge-branch which does all the steps of merging an hg branch for me.
Augie Fackler <durin42@gmail.com>
parents:
60
diff
changeset
|
41 hg strip $striprev |
79c2c3932362
Add hg-svn-merge-branch which does all the steps of merging an hg branch for me.
Augie Fackler <durin42@gmail.com>
parents:
60
diff
changeset
|
42 } |
133
5b0b8ad2cb2c
vcs_functions: some versions of the shell don't like - in function names.
Augie Fackler <durin42@gmail.com>
parents:
129
diff
changeset
|
43 alias hg-svn-merge-branch=hgsvnmergebranch |
61
79c2c3932362
Add hg-svn-merge-branch which does all the steps of merging an hg branch for me.
Augie Fackler <durin42@gmail.com>
parents:
60
diff
changeset
|
44 |
133
5b0b8ad2cb2c
vcs_functions: some versions of the shell don't like - in function names.
Augie Fackler <durin42@gmail.com>
parents:
129
diff
changeset
|
45 function hgsvnrebaseall() { |
69
5232fa3d7ad3
Changes required by log being back to the default.
Augie Fackler <durin42@gmail.com>
parents:
67
diff
changeset
|
46 for b in `hg log -u 'Augie Fackler <durin42@gmail.com>' --template '{branches}\n' | sort | uniq` |
58
20834b97b814
Add function to rebase all local named branches to HEAD of their parent svn branch.
Augie Fackler <durin42@gmail.com>
parents:
47
diff
changeset
|
47 do |
231
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
48 echo "rebase $b" |
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
49 hg co $b |
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
50 if [[ "$?" != "0" ]] ; then |
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
51 echo "abort: could not checkout $b" |
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
52 return |
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
53 fi |
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
54 hg parent --svn > /dev/null |
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
55 if [[ "$?" == "0" ]] ; then |
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
56 hg rebase --svn || return |
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
57 else |
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
58 echo "Skip $b since it has a merge." |
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
59 fi |
58
20834b97b814
Add function to rebase all local named branches to HEAD of their parent svn branch.
Augie Fackler <durin42@gmail.com>
parents:
47
diff
changeset
|
60 done |
20834b97b814
Add function to rebase all local named branches to HEAD of their parent svn branch.
Augie Fackler <durin42@gmail.com>
parents:
47
diff
changeset
|
61 } |
133
5b0b8ad2cb2c
vcs_functions: some versions of the shell don't like - in function names.
Augie Fackler <durin42@gmail.com>
parents:
129
diff
changeset
|
62 alias hg-svn-rebase-all=hgsvnrebaseall |
58
20834b97b814
Add function to rebase all local named branches to HEAD of their parent svn branch.
Augie Fackler <durin42@gmail.com>
parents:
47
diff
changeset
|
63 |
133
5b0b8ad2cb2c
vcs_functions: some versions of the shell don't like - in function names.
Augie Fackler <durin42@gmail.com>
parents:
129
diff
changeset
|
64 function hgamend() { |
62
f9e826bd1f1b
Add a function to ammend the latest revision in hg. I don't do this often, but when I need it it is handy.
Augie Fackler <durin42@gmail.com>
parents:
61
diff
changeset
|
65 hg qimport -r . && hg qref && hg qfin qtip |
f9e826bd1f1b
Add a function to ammend the latest revision in hg. I don't do this often, but when I need it it is handy.
Augie Fackler <durin42@gmail.com>
parents:
61
diff
changeset
|
66 } |
133
5b0b8ad2cb2c
vcs_functions: some versions of the shell don't like - in function names.
Augie Fackler <durin42@gmail.com>
parents:
129
diff
changeset
|
67 alias hg-amend=hgamend |
62
f9e826bd1f1b
Add a function to ammend the latest revision in hg. I don't do this often, but when I need it it is handy.
Augie Fackler <durin42@gmail.com>
parents:
61
diff
changeset
|
68 |
204
9e45ac5350fd
vcs funcs: tools for verifying hg or git repos, packing git repos
Augie Fackler <durin42@gmail.com>
parents:
200
diff
changeset
|
69 function hg_verify_all() { |
9e45ac5350fd
vcs funcs: tools for verifying hg or git repos, packing git repos
Augie Fackler <durin42@gmail.com>
parents:
200
diff
changeset
|
70 for x in $(find . -name '.hg') ; do |
9e45ac5350fd
vcs funcs: tools for verifying hg or git repos, packing git repos
Augie Fackler <durin42@gmail.com>
parents:
200
diff
changeset
|
71 y=$(dirname $x) |
9e45ac5350fd
vcs funcs: tools for verifying hg or git repos, packing git repos
Augie Fackler <durin42@gmail.com>
parents:
200
diff
changeset
|
72 echo $y |
9e45ac5350fd
vcs funcs: tools for verifying hg or git repos, packing git repos
Augie Fackler <durin42@gmail.com>
parents:
200
diff
changeset
|
73 hg verify -R $y |
9e45ac5350fd
vcs funcs: tools for verifying hg or git repos, packing git repos
Augie Fackler <durin42@gmail.com>
parents:
200
diff
changeset
|
74 done |
9e45ac5350fd
vcs funcs: tools for verifying hg or git repos, packing git repos
Augie Fackler <durin42@gmail.com>
parents:
200
diff
changeset
|
75 } |
9e45ac5350fd
vcs funcs: tools for verifying hg or git repos, packing git repos
Augie Fackler <durin42@gmail.com>
parents:
200
diff
changeset
|
76 |
133
5b0b8ad2cb2c
vcs_functions: some versions of the shell don't like - in function names.
Augie Fackler <durin42@gmail.com>
parents:
129
diff
changeset
|
77 function hgsvnmkbranch() { |
46
8946e6ae2747
Stopgap hg-svn-mkbranch command to save me typing until the feature goes into hgsubversion itself.
Augie Fackler <durin42@gmail.com>
parents:
39
diff
changeset
|
78 local upstream |
129
1286c27cf0c0
Need to use paths default instead of the outdated svn url now.
Augie Fackler <durin42@gmail.com>
parents:
115
diff
changeset
|
79 upstream=$(hg paths default | sed 's%/*$%%') |
46
8946e6ae2747
Stopgap hg-svn-mkbranch command to save me typing until the feature goes into hgsubversion itself.
Augie Fackler <durin42@gmail.com>
parents:
39
diff
changeset
|
80 local branchname |
8946e6ae2747
Stopgap hg-svn-mkbranch command to save me typing until the feature goes into hgsubversion itself.
Augie Fackler <durin42@gmail.com>
parents:
39
diff
changeset
|
81 if [ "x$1" = "x" ] ; then |
231
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
82 echo 'Must provide new branch name.' |
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
83 return 1 |
46
8946e6ae2747
Stopgap hg-svn-mkbranch command to save me typing until the feature goes into hgsubversion itself.
Augie Fackler <durin42@gmail.com>
parents:
39
diff
changeset
|
84 fi |
8946e6ae2747
Stopgap hg-svn-mkbranch command to save me typing until the feature goes into hgsubversion itself.
Augie Fackler <durin42@gmail.com>
parents:
39
diff
changeset
|
85 local d=`hg svn info | grep URL | sed 's/.*://'` |
8946e6ae2747
Stopgap hg-svn-mkbranch command to save me typing until the feature goes into hgsubversion itself.
Augie Fackler <durin42@gmail.com>
parents:
39
diff
changeset
|
86 local br=`echo $d | awk '{ |
231
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
87 if ( index($1, "trunk") ) { |
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
88 print "trunk" |
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
89 } else { |
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
90 x = index($1, "branches") ; |
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
91 if ( x != 0 ) { |
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
92 sub(".*/branches/", ""); |
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
93 sub("/.*", ""); |
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
94 print $0 |
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
95 } |
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
96 } |
6da5a4729bc7
hg-rebase-all: fix bogus loop
Augie Fackler <durin42@gmail.com>
parents:
228
diff
changeset
|
97 }'` |
46
8946e6ae2747
Stopgap hg-svn-mkbranch command to save me typing until the feature goes into hgsubversion itself.
Augie Fackler <durin42@gmail.com>
parents:
39
diff
changeset
|
98 |
8946e6ae2747
Stopgap hg-svn-mkbranch command to save me typing until the feature goes into hgsubversion itself.
Augie Fackler <durin42@gmail.com>
parents:
39
diff
changeset
|
99 branchname=$br |
47
e80bc65439ac
Too clever for my own good in this function.
Augie Fackler <durin42@gmail.com>
parents:
46
diff
changeset
|
100 echo svn cp $upstream/$branchname $upstream/branches/$1 |
46
8946e6ae2747
Stopgap hg-svn-mkbranch command to save me typing until the feature goes into hgsubversion itself.
Augie Fackler <durin42@gmail.com>
parents:
39
diff
changeset
|
101 } |
133
5b0b8ad2cb2c
vcs_functions: some versions of the shell don't like - in function names.
Augie Fackler <durin42@gmail.com>
parents:
129
diff
changeset
|
102 alias hg-svn-mkbranch=hgsvnmkbranch |