I've recently used git svn and enjoyed it very much. Now I'm starting a new project at a different customer. At that site the SCM of choice is ClearCase. I haven't found a baked equivalent of git svn for ClearCase. Is there anybody who has tried to use git locally as a front-end to ClearCase using some tricks, configuration or scripting ...
I was trying to verify changes on a file between two commits. This works fine both in Espresso and Textmate but in Coda i always get this error "No SCM found". Can anyone suggest what to look for?
...
Anyone can recommend a solution for this?
...
I would like to know if there is a clean way to do git-svn dcommit of multiple local commits as 1 commit into subversion.
The situation that I have is I am cherry picking some bug fixes changes from our trunk into the maintenance branch. The project preference is to have the bug fixes to be committed as 1 commit in subversion, but I wou...
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 that 'stash' command is preser...
I want to git clone an svn repository except for one folder in the root folder of svn.
How do I do it?
I could do git svn clone svnrepo/dir/sb-dir/ if I needed only sb-dir but I need all folders (and files) within the dir except the design folder
...
I just recently got around to converting an old svn project to git. Everything has worked fine except for one part of the history import.
For some reason the Commit number is way off. For example the first commit to the subversion repo was 1; but if I check the git log it reads that same commit as 53267272343. Just a little off :)
Does...
I made a bunch of commits to the master and realized after the fact that they should have been in a branch.
I've looked at various things about rebasing and merging and resetting the master. But no attempts at manipulation have yielded a history that looks like what I'm trying to do.
My attempts lead me to believe it requires some comb...
Hi I just installed git cygwin on my windows pc at work, but somehow git pull doesn't seems to be working.
the out put is :
git: 'pull' is not a git-command. See 'git --help'.
Did you mean this?
pull
Cant seem to figure this one out, this works fine using the msysgit version.
...
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 returned error: 128
$ git --version
...
I'm looking for a command in git-svn that will show me the changes I have committed to my git repository but that aren't yet committed to the central svn repository. I'm looking for something that works like svn status, but I'm using git-svn, and unfortunately, git svn status is not a valid command.
I tried git status but it does not s...
This wasn't so bad at the beginning, but now I have hundreds of no-op merge problems (solved by git rebase --skip).
I have setup a shared git repo for my group because it is easier to deal with. But the company uses SVN so I have to keep SVN in sync with GIT. Worked like a dream at first, but after weeks of doing this GIT is giving me...
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 and start from there? Or can I just ...
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.4.4.
I can't establish whether git svn...
I'm in a position where I'm the only one using git, everybody else is using svn. I've used 'git svn' to connect to the team svn and mostly it works just fine. Lately, I've started a project initially on my own, separate git repo and now I need to merge stuff from it to the svn. However, I still would like to keep tweaking the implementat...
our svn had so far traditional layout:
trunk
branches/
tags/
i cloned whole the repository long time ago and everything worked perfectly. but few weeks ago someone figured out that particular releases should go to releases/ instead of branches/ so the layout changed to following:
trunk
branches/
releases/
tags/
is there...
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 (git checkout -b foobar) how can I have g...
Background
I'm adding some features to a project that uses subversion - I'm using git-svn to clone it to my local repository, git-svn rebase to keep with the recent changes in the official trunk and keep the history linear.
Recently I've forgot myself and made a few merges which messed my rebasing - long story short I needed to spend ...
While working with git-svn, and a 'typical' svn repo /trunk, /branches/..., /tags/...
How do I push a local branch to a new branch inside of /branches ?
...
I am currently working with a subversion repository but I am using git to work locally on my machine. It makes work much easier, but it also makes some of the bad behavior going on in the subversion repo quite glaring and that creates problems for me.
There is a somewhat complex local build process after pulling down the code and it cr...