Difference between revisions of "Talk:Git"
From GnuCash
(→Multiple branches in separate directories?: new section) |
(→Multiple branches in separate directories?) |
||
Line 14: | Line 14: | ||
[1] http://wiki.gnucash.org/wiki/Git#Multi-Branch_Setup | [1] http://wiki.gnucash.org/wiki/Git#Multi-Branch_Setup | ||
+ | |||
+ | Page updated now - if found OK, this question can be removed. |
Revision as of 16:07, 31 October 2010
how about
svn info http://svn.gnucash.org/repo/gnucash/trunk/
to get the latest version number, then with the correct revision number:
git svn clone -r[rev#] http://svn.gnucash.org/repo/gnucash/trunk . git svn rebase
worked for me (I think) --Tim abell 17:34, 29 May 2008 (EDT)
Multiple branches in separate directories?
[1] recommends that if you work with multiple branches, to have each branch in a separate local Git clone because checking out branches causes Git to change all files and thus forces a full build when you next run make.
Has this been verified? From what I understand, checking out Git topic branches only causes Git to change files which are actually different--files which have the same content across both the branches are left untouched.
[1] http://wiki.gnucash.org/wiki/Git#Multi-Branch_Setup
Page updated now - if found OK, this question can be removed.