-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am using git to develop against a project hosted in subversion, using git-svn:
git svn clone svn://project/
My general workflow has been to repeatedly edit-and-commit on the master branch, then commit to the svn repository via:
git stash
git svn dcommit
git stash apply
One of the local modifications…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm running git 1.7 on Mac OSX, installed via Homebrew. I'm trying to use git svn to work with a Subversion server that requires Subversion 1.5 clients (a restriction enforced via a pre-commit hook.)
Running git svn --version reveals that as far as git is concerned, git svn is equivalent to svn v1…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm currently working on a project that has a svn repository. I'm used to git and love the way it allows me to have a local repository, so I would like to use git-svn with this project.
I would like to know how to use git-svn from a svn project already in my computer. Do I really need to make a clone…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm getting the following error attempting to clone an svn repository.
Anyone seen this before?
$ git svn clone -s https://npanday.svn.codeplex.com/svn npanday
Initialized empty Git repository in /home/kurtharriger/npanday/.git/
fatal: Not a valid object name
ls-tree -r --name-only -z : command…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
After cloning an SVN repository using git-svn with the -s option (git svn clone http://server/repo -s), how does one create a branch or tag and have pushed to the relevant branch/tag directory in the repository when dcommiting?
For instance; if I were to use git to create a foobar branch locally…
>>> More