Changes between Version 9 and Version 10 of git-svn-tutorial
- Timestamp:
- 08/07/09 18:20:08 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
git-svn-tutorial
v9 v10 13 13 }}} 14 14 15 You can also download a zip file of the latest Parrot github mirror at http://github.com/leto/parrot/zipball/upstream.15 This will create a directory in the current directory named 'parrot'. If you want to specify the directory to create, pass one more argument. 16 16 17 This will create a directory in the current directory named 'parrot'. If you want to specify the directory to create, pass one more argument. 17 18 You can also download a tar archive containing the complete history and all branches as well as svn meta data from http://moritz.faui2k3.org/files/parrot-all-git-svn.tar.gz (recommended; prepared by Tene, polished by moritz). 18 19 19 20 Now, start working on patches. The simplest way to work, without local branches, is: … … 99 100 Other developers may access your local branches, but in order to do so, they would need to be able to access your git repository. 100 101 102 == Ignoring generated files == 103 104 Svn stores ignores as meta data, git in .gitignore files. You can generate the .gitignore files automatically by running 105 106 {{{ 107 git svn create-ignore 108 }}} 109 101 110 = Questions = 102 111