Last active
December 12, 2015 09:19
-
-
Save vitkin/4750360 to your computer and use it in GitHub Desktop.
Converting Jalopy CVS modules to Git repositories.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mkdir jalopy | |
cd jalopy | |
cat > authors.txt << EOF | |
marcohu = Marco Hunsicker <[email protected]> | |
rcleveng = Rob Clevenger <[email protected]> | |
scheruga = Horst Scheruga <[email protected]> | |
notzippy = Steve Heyns <[email protected]> | |
alen_vrecko = Alen Vrecko <[email protected]> | |
EOF | |
for m in ant build console docu eclipse jbuilder jdeveloper jedit main netbeans;\ | |
do git cvsimport -C $m -v -u -m -a -A authors.txt -r sourceforge -R \ | |
-d:pserver:[email protected]:/cvsroot/jalopy $m;\ | |
done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment