August
This is the archive for August, 2010.
Dive into the archives.
- working with GIT
RETRIEVING COPY FROM SVN
note: the url specified should be a level below the trunk directory
git svn init <repository url> –stdlayout –no-minimize-url
note: specify a revision number where all branches have committed
git svn fetch -r<revision number>:HEAD
example:
branch1 latest commit is revision 2370
branch2 latest commit is revision 2389
trunk latest commit is 2390
-to retrieve copies for all branches
git svn fetch […]

