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
|
Load commonly used test logic
$ . "$TESTDIR/testutil"
$ git init -q --bare repo.git
$ git clone repo.git gitrepo
Cloning into 'gitrepo'...
warning: You appear to have cloned an empty repository.
done.
$ cd gitrepo
$ echo alpha > alpha
$ git add alpha
$ fn_git_commit -m "add alpha"
$ git push --quiet --set-upstream origin master
Branch 'master' set up to track remote branch 'master' from 'origin'. (?)
$ cd ..
$ hg clone -U repo.git hgrepo
importing 1 git commits
new changesets ff7a2f2d8d70 (1 drafts)
$ cd hgrepo
$ hg co master
1 files updated, 0 files merged, 0 files removed, 0 files unresolved
(activating bookmark master)
$ fn_hg_tag alpha
$ hg push
pushing to $TESTTMP/repo.git
searching for changes
adding objects
remote: found 0 deltas to reuse
added 1 commits with 1 trees and 1 blobs
updating reference refs/heads/master
adding reference refs/tags/alpha
$ hg log --graph
@ changeset: 1:e8b150f84560
| bookmark: master
| tag: default/master
| tag: tip
| user: test
| date: Mon Jan 01 00:00:11 2007 +0000
| summary: Added tag alpha for changeset ff7a2f2d8d70
|
o changeset: 0:ff7a2f2d8d70
tag: alpha
user: test <test@example.org>
date: Mon Jan 01 00:00:10 2007 +0000
summary: add alpha
$ cd ..
$ cd gitrepo
git should have the tag alpha
$ git fetch origin
From $TESTTMP/repo
7eeab2e..bbae830 master -> origin/master
* [new tag] alpha -> alpha
$ cd ..
$ hg clone repo.git hgrepo2
importing 2 git commits
new changesets ff7a2f2d8d70:e8b150f84560 (2 drafts)
updating to bookmark master
2 files updated, 0 files merged, 0 files removed, 0 files unresolved
$ hg -R hgrepo2 log --graph
@ changeset: 1:e8b150f84560
| bookmark: master
| tag: default/master
| tag: tip
| user: test
| date: Mon Jan 01 00:00:11 2007 +0000
| summary: Added tag alpha for changeset ff7a2f2d8d70
|
o changeset: 0:ff7a2f2d8d70
tag: alpha
user: test <test@example.org>
date: Mon Jan 01 00:00:10 2007 +0000
summary: add alpha
the tag should be in .hgtags
$ cat hgrepo2/.hgtags
ff7a2f2d8d7099694ae1e8b03838d40575bebb63 alpha
|