Changes between Version 16 and Version 17 of git-svn-tutorial
- Timestamp:
- 09/15/09 20:02:32 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
git-svn-tutorial
v16 v17 173 173 == Ignoring generated files == 174 174 175 Svn stores ignores as meta data, git in .gitignore files. You can generate the .gitignore files automatically by running 175 Svn stores ignores as meta data, git in .gitignore files. You can ignore the SVN metadata (and generated files) with these files. First, edit your .git/info/exclude file to contain: 176 177 {{{ 178 .gitignore 179 }}} 180 181 ... or else git-svn will want to track all .gitignore files. Now generate the .gitignore files automatically by running 176 182 177 183 {{{ … … 179 185 }}} 180 186 187 If you have not excluded these files, they will be staged for your next commit. You probably do not want this, as dcommitting them will add them to Parrot's SVN. Beware. 188 181 189 = Questions = 182 190