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 …
2
votes
Bazaar and $Id$
Having automatically generated Id tags that show a sensible version number is impossible to do with DSCM tools like Bazaar because everybody’s line of development can be different from all others. …
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 …
19
votes
Personal Version Controller
Git creates repositories that do not require a central server. Also, you can of course restore any previous version for tracked files which is—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 …
4
votes
Are there version control systems that allow you to permanently delete files?
I don’t think there’s any version control system that allows you do that regularly because that goes against everything version control systems stand for.
…
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 …
2
votes
How do I do a ‘git status’ so it doesn’t display untracked files without using .gitignore?
Also:
git config status.showuntrackedfiles no
…
3
votes
git, don’t show me *.pyc in the list of untracked files!
git config --global core.excludesfile "c:\program files\whatever\global_ignore.txt"
Then, add
*.foo
to that file.
…
2
votes
Create git branch, and revert original to upstream state
What exactly do you mean by
I messed [up] my master and can no longer branch from it.
You can always create a new branch from any commit in your reposit …
2
votes
In gitk, why is my yellow button above master?
Looks you need to put that commit back into the master branch (if it belongs there). Also it looks like you’ve detached HEAD because that commit is not a branch head. If all this is tr …
2
votes
In Git, how do you see and manage commits that aren’t in a branch?
git reflog will show you a symbolic name like HEAD@{0} that you can use to access that otherwise unreachable commit. You could then use gitk --all HEAD@{0} to …
1
vote
Replace Subversion Folder and Retain History
When removing the 3.4 folder and copying the 3.3 folder over it nothing is lost. That’s what subversion is there for. You can access the “old” version 3.4 by using a “peg revision”, i.e. use
…
