repo.or.cz
/
gc-utils.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'maint'
[gc-utils.git]
/
tests
/
gc-import-gu.sh
blob
e8aa59a52a63bcdbae472e437eefea1044114cff
1
#!/bin/bash
2
3
. setup.sh
4
5
##############
6
# TEST COMMIT
7
# AND IMPORT
8
9
cd
$CVSCO
10
touch
file4
11
cvs add file4
12
cvs commit
-m
"test commit"
13
14
cvs tag foo_bar
15
16
cd
$ABSDIR
17
18
gc-import
-gu -v -d
$GIT_DIR $CVSROOT $CVSMODULE
19
20
cd
$GIT_DIR
21
git tag |
grep
foo.bar || failure
"Underscore was not translated to a dot"
22
23
sucess
24