10
votes
What are your pros and cons of git after having used it?
A lot of people would deny this but the choice of source code management tool influences the way you work. I used to work a lot with Subversion—until I discovered Git for me. I mostly avoided branc …
3
votes
How do I revert a git-svn branch to SVN HEAD?
I will assume that the branch you are working on is the one for trunk (I will call it old-trunk). Simply create a new branch from there
git checkout -b rea …
8
votes
Is it possible to retroactively turn a set of commits into a branch?
Of course you can. (With Git there isn’t much than you can’t do anyway. :)
git checkout -b new-branch hash-of-A
git cherry-pick hash-of-A1
git cherry-pick hash-of-A2
…
0
votes
Is there an acceptable GUI client for git-svn?
You can use any GUI client for Git that you want to use. You only have to revert to the command line when you want to interface with the Subversion server (e.g. for committing and updating).
…
3
votes
Moving from CVS to git: $Id:$ equivalent?
As I’ve written before:
Having automatically generated Id tags that show a sensible version numbe …
10
votes
How to make git mark a deleted and a new file as a file move?
Git will automatically detect the move/rename if your modification is not too severe. Just git add the new file, and git rm the old file. git status will then …
0
votes
How do I combine the first two commits of a Git repository?
You have to perform a bit of command-line magic.
# git checkout -b a A
# git checkout B <files>
# git commit --amend
# git checkout master
# git rebase a
Tha …
7
votes
local git check-ins — hide from main repository?
You could merge your changes as a single commit on the main branch:
$ git checkout main
$ git merge --squash local
That discards all of your local history, of cour …
2
votes
git workflow and rebase vs merge questions
With Git there is no “correct” workflow. Use whatever floats your boat. However, if you constantly get conflicts when merging branches maybe you should coordinate your efforts better with your fell …
0
votes
Is using a central repository going against GIT’s purpose?
DVCS like Git don’t force you to use a central repository. Of course it’s possible to declare one repository to be “central” or “official” or whatever, and in a company context a central repository …
2
votes
How do I convert a git repository to mercurial?
Distributed revision control with Mercurial states:
The revision control tools supported
by convert a …
1
vote
Git plugin for Hudson checkout problem
First, your version of Git is pretty old. I suggest you update it before you do anything else.
Second, git checkout -f origin/ is not a valid command. You either need to checko …
5
votes
Can I store the .git folder outside the files I want tracked?
git --git-dir=../repo --work-tree=. add foo
This will do what you want but will obviously suck when you have to specify it with every git command you ever use.
[Ed …
6
votes
Git gets file hungry every once in a while…
Sounds like a line-ending issue. Check man git-config for core.autocrlf.
…
8
votes
Merging branches With Git
# git checkout master
# git merge change_specific
That should do it. git merge <branch1> <branch2> actually tries to merge three branches …
