Mercurial > hg
annotate tests/test-diff-copy-depth @ 9336:dd6f605b15c0
mq: upgrade the patch to HG format when adding the author name with qrefresh
When setting the author field with qrefresh (-u|-U), and the patch does have
neither a 'From:' nor a '# User' header, add the author name as such:
- if the patch has a 'Date:' header, add a 'From:' header
- otherwise, upgrade to Mercurial extended patch format and add # From
author | Yann E. MORIN <yann.morin.1998@anciens.enib.fr> |
---|---|
date | Wed, 12 Aug 2009 10:48:18 +0200 |
parents | 204a2ca249b6 |
children |
rev | line source |
---|---|
6489
204a2ca249b6
tests/test-diff-copy-depth: using sh instead of bash
Adrian Buehlmann <adrian@cadifra.com>
parents:
6424
diff
changeset
|
1 #!/bin/sh |
6424 | 2 |
3 for i in aaa zzz; do | |
4 hg init t | |
5 cd t | |
6 | |
7 echo "-- With $i" | |
8 | |
9 touch file | |
10 hg add file | |
11 hg ci -m "Add" | |
12 | |
13 hg cp file $i | |
14 hg ci -m "a -> $i" | |
15 | |
16 hg cp $i other-file | |
17 echo "different" >> $i | |
18 hg ci -m "$i -> other-file" | |
19 | |
20 hg cp other-file somename | |
21 | |
22 echo "Status": | |
23 hg st -C | |
24 echo | |
25 echo "Diff:" | |
26 hg diff -g | |
27 echo | |
28 | |
29 cd .. | |
30 rm -rf t | |
31 done |