Skip to content

Instantly share code, notes, and snippets.

@vitkin
Last active December 12, 2015 09:19
Show Gist options
  • Save vitkin/4750360 to your computer and use it in GitHub Desktop.
Save vitkin/4750360 to your computer and use it in GitHub Desktop.
Converting Jalopy CVS modules to Git repositories.
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