Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
6answers
2k views

Combine Local Git Commits into One Commit with git-svn

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 ...
7
votes
2answers
186 views

What is the origin of the name 'dcommit' in git svn dcommit

does dcommit stand for Distributed Commit? Something else?
4
votes
1answer
171 views

Is it safe to interrupt a dcommit call that appears to be hung up?

I'm using the git-svn bridge and have reshuffled a large number of files around in my repository so it's organized a bit better. I ran git svn dcommit to put the changes back at the SVN server and ...
3
votes
1answer
2k views

Using TortoiseGit, can I commit and svn dcommit in one step?

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 ...
2
votes
2answers
150 views

git svn dcommit fails with “Incomplete data: Delta source ended unexpectedly”

I'm working with a remote team using an SVN repository. Mostly because of the high latency I experienced when contacting the repository, I decided to use git-svn. Everything is working great until I ...
1
vote
1answer
76 views

commit to svn unstages last commit?

Today i have encountered a weird problem when "dcommitting" my master HEAD to google code svn repository. Below an extract of what I did. I'd almost say that I do have uuid clash but i consider that ...
1
vote
0answers
22 views

Is dcommiting from a rebased branch a good idea?

Consider the following layout: git | svn ----------------------------------- master | trunk local_experimental | experimental Is the following list of command ...
0
votes
1answer
141 views

GIT SVN dcommit after folder rename

I have not been able to find a similar answer to my question. Situation: Locally using GIT (git version 1.7.3.1.msysgit.0) Remote repository is SVN (not sure of version) Problem: Clone an SVN ...
0
votes
1answer
91 views

git svn dcommit: Chokes on .DS_Store

Yes, I know I should have had .DS_Store in my .gitignore!! I messed up :( I added jquery-ui to my project and committed the new files: afazio-mac% = [development] git diff --summary ...
0
votes
1answer
41 views

git-svn dcommit fails because the repository name contains a space

When attemping to git svn dcommit to a repository that has spaces in it's name, I get the following error: Committing to http://svn.kuluvalley.com/Meet the Expert/trunk ... ...
0
votes
1answer
237 views

Git svn commit with id

I am working to setup a local git that bases it's repository on a SVN store. All looks ok but how do I link a work item id with a comment to svn store when I run "git svn dcommit"?
0
votes
2answers
205 views

git-svn pushing existing repository mapping usernames the other way

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 ...
0
votes
1answer
157 views

git: correct way to merge/rebase with respect to svn dcommit

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): ...