Category Archives: git

Git flow for working on svn branch

The Problem: you want to play on git code branches on svn server. Here’s the simple flow. 1. Specify the layout when running git svn clone: Specify the trunk, branch and tags by -T,-b,-t, such as: -T dev -b branches … Continue reading

Posted in git | Leave a comment

git svn workflow and some tips

Git svn simple tutorial 1. get a copy of your project from svn server by git svn clone: git svn clone –no-metadata /path/to/svn/project (alt: git-svn init https://svn.kde.org/home/kde/trunk/kdesupport/strigi) some example: git svn clone -T http://192.168.1.5/svn/search/dev  search-git git clone a repository with customized … Continue reading

Posted in git | Leave a comment