I am using TortoiseGit and am working with an svn repository using git-svn.
Sometimes I want to make a one line change and dcommit it to the svn repo immediately (so the CI server will pick up the change).
Currently I have to git commit, then dcommit. It's an extra step for something I want to do quickly...it would be nice if I could j...
Currently, when I run git svn dcommit git creates a separate commit in SVN for every local commit I've made since last syncing with SVN. Is there any way for dcommit to instead combine all my recent local commits into one commit for SVN?
...
I have the following situation (mostly because I didn't really thought it through in the beginning -- or more exactly, I thought it shouldn't be a problem the way I did this but now I am stumbled):
... --- A --- B1 --- ... --- Bn
... --- git-svn
Whereby A and git-svn are at the same state (exactly the same files and file content) but...
Hey all,
My team and I are currently working on a university project. We were given the project but it hadn't officially started, so we began work in GIT to get a head start. The coordinator of the project has now forced us to use SVN so I am attempting to use git-svn to interface the two repositories.
I can move our commits into the s...
does dcommit stand for Distributed Commit? Something else?
...