I am trying to do all my branching and merging through git-svn , however I hung up the branching in subversion.
Our administrator tells me that I have full read and write permissions to the repo and I CAN retrieve the latest code.
For the test, I deleted the ~/.subversion/svn.simple and ran it.
04:13 pm [214423L] C:\Dev\MyFooApp.Bar [master] $ git svn fetch Authentication realm: <https://code:443> VisualSVN Server Password for 'cflorell': {my password} 04:14 pm [214423L] C:\Dev\MyFooApp.Bar [master] $ git svn fetch 04:14 pm [214423L] C:\Dev\MyFooApp.Bar [master] $
Also, if I clone a repo using Tortoise and then create a branch using svn , it works.
04:43 pm [214423L] C:\Dev\MyFooApp.Bar $ svn copy https://code/svn/MyFooApp.Bar/trunk https://code/svn/MyFooApp.Bar/branches/test-branch -m "test branch" Committing transaction... Committed revision 93.
But when trying to create a branch using git-svn it still says that my auth is invalid.
04:14 pm [214423L] C:\Dev\MyFooApp.Bar [master] $ git svn branch develop Copying https://code/svn/MyFooApp.Bar/trunk at r92 to https://code/svn/MyFooApp.Bar/branches/develop... Authentication failed: Unable to connect to a repository at URL 'https://code/svn/MyFooApp.Bar/trunk': No more credentials or we tried too many times. Authentication failed at C:\Program Files\Git\mingw64/libexec/git-core\git-svn line 1196. 04:14 pm [214423L] C:\Dev\MyFooApp.Bar [master] $
My config file, I think is correct.
[core] repositoryformatversion = 0 filemode = false bare = false logallrefupdates = true symlinks = false ignorecase = true hideDotFiles = dotGitOnly [svn-remote "svn"] url = https://code/svn/MyFooApp.Bar fetch = trunk:refs/remotes/svn/trunk branches = branches/*:refs/remotes/svn/* tags = tags/*:refs/remotes/svn/tags/*
Where can I go wrong with all this?
git-svn
Chase florell
source share