I use SourceTree with Git but need to work with SVN repistory, what options do I have?

If those opensource projects are no longer active in their Subversion referential, you could: clone them locally (you can use TortoiseSVN for example) use SubGit to make a one-time conversion between the local SVN repository and a new local Git repository. push the new Git repository to a new upstream repository hosting service. But if the SVN repository … Read more

‘cannot open git-upload-pack’ error in Eclipse when cloning or pushing git repository

Finally I made it work thanks to the steps outlined in the Eclipse forum: Set up the SSH key stuff Download and install mysys git according to the github instructions at http://help.github.com/win-git-installation/ In C:/Users/you/ssh hide any existing keys (id_rsa and id_rsa.pub) in a subdirectory. If the ssh directory does not exist, create it. Of course, “you” is … Read more

Git: cannot do a partial commit during a merge (SourceTree)

After updating the SourceTree to it’s latest version I am fighting with this issue. Assume following scenario: There are file A, B and C under the version control and there is just one branch. In my working copy, I make some changes to the file A so it turns into a A’ as well as the file B to B’. Someone else in his working copy makes … Read more