AROS m68k-amiga: Difference between revisions
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
= Make a really fast clone of all of AROS SVN, ''and'' be able to git svn dcommit = | = Make a really fast clone of all of AROS SVN, ''and'' be able to git svn dcommit = | ||
== AROS.git == | |||
* git clone git://repo.or.cz/AROS.git | * git clone git://repo.or.cz/AROS.git | ||
Line 7: | Line 9: | ||
* git svn fetch | * git svn fetch | ||
** This should take under 60 seconds | ** This should take under 60 seconds | ||
* git checkout -b master-svn refs/remotes/git-svn | |||
== AROS-contrib.git == | |||
* cd AROS | |||
* Remove the '/contrib' line from .gitignore | |||
* git submodule add git://repo.or.cz/AROS-contrib.git contrib | |||
** About 4-5 minutes later... | |||
* cd contrib | |||
* git svn init --username=yournamehere https://svn.aros.org/svn/aros/trunk/AROS-contrib | |||
* git update-ref refs/remotes/git-svn origin/master | |||
* git svn fetch (takes a while) | |||
* git checkout -b master-svn refs/remotes/git-svn |
Revision as of 13:16, 14 October 2010
Make a really fast clone of all of AROS SVN, and be able to git svn dcommit
AROS.git
- git clone git://repo.or.cz/AROS.git
- About 10-15 minutes on a slow link
- git svn init --username=yournamehere https://svn.aros.org/svn/aros/trunk/AROS
- git update-ref refs/remotes/git-svn origin/master
- git svn fetch
- This should take under 60 seconds
- git checkout -b master-svn refs/remotes/git-svn
AROS-contrib.git
- cd AROS
- Remove the '/contrib' line from .gitignore
- git submodule add git://repo.or.cz/AROS-contrib.git contrib
- About 4-5 minutes later...
- cd contrib
- git svn init --username=yournamehere https://svn.aros.org/svn/aros/trunk/AROS-contrib
- git update-ref refs/remotes/git-svn origin/master
- git svn fetch (takes a while)
- git checkout -b master-svn refs/remotes/git-svn