Difference between revisions of "Git-svn"

From Vague Hope Wiki
Jump to: navigation, search
Line 17: Line 17:
 
<pre>
 
<pre>
 
git svn fetch
 
git svn fetch
</pre>
 
OR
 
<pre>
 
 
git svn rebase
 
git svn rebase
 
</pre>
 
</pre>

Revision as of 05:17, 3 October 2010

Basic usage of git-svn

Check out:

mkdir prjname
cd prjname
git svn init https://example.com/svn/prjname/trunk
git svn fetch -r HEAD
git checkout -b nameofbranch

Show status:

git svn stat

Update:

git svn fetch
git svn rebase

Commit changes:

git status
git add path/to/file
git commit
git svn rebase
git svn dcommit

Useful git cmds

Check git FS is sane.

git fsck

References