Tagged Questions

103
votes
4answers
25k views

git rebase vs git merge

When does one use git rebase vs git merge? Does one still need to merge after a successful rebase?
302
votes
8answers
21k views

Git and Mercurial - Compare and Contrast

For a while now I've been using subversion for my personal projects. More and more I keep hearing great things about Git and Mercurial, and DVCS in general. I'd like to give the whole DVCS thing a ...
34
votes
4answers
5k views

Git: Which commit has this blob?

Given the hash of a blob, is there a way to get a list of commits that have this blob in their tree?
87
votes
9answers
33k views

Popularity of Git/Mercurial/Bazaar vs. which to recommend

Going by the number of questions on this site for these three distributed version control systems, it seems like Git either is more popular, or is more difficult (hence requiring more questions), ...
223
votes
15answers
58k views

How do I change the author of a commit in git?

I was writing a simple script in the school computer, and commiting the changes to git (in a repo that was in my pendrive, cloned from my computer at home). After several commits I realized I was ...
143
votes
24answers
97k views

What is the best Git GUI on OSX? [closed]

What is the best GUI on OSX for viewing a Git repository, and (optionally) manipulating it?
223
votes
9answers
46k views

git workflow and rebase vs merge questions

I've been using git now for a couple months on a project with one other developer. I have several years of experience with svn, so I guess I bring a lot of baggage to the relationship. I have heard ...
111
votes
8answers
22k views

How do you merge two git repositories?

Consider the following scenario: I have developed small experimental project A in its own git repo. It has now matured, and I'd like A to be part of larger project B, which has its own big repository. ...
119
votes
22answers
95k views

Svn vs Git [closed]

I am starting a new distributed project where some of the developers will not be in the same country... What should I use: Git or SVN? Why? PS. It is a smart client application running on windows ...
32
votes
6answers
14k views

Sparse checkout in Git 1.7.0?

With the new sparse checkout feature in Git 1.7.0, is it possible to just get the contents of a subdirectory like how you can in SVN? I found this example, but it preserves the full directory ...
687
votes
24answers
117k views

What is the Difference Between Mercurial and Git?

I've been using git for some time now on Windows (with msysGit) and I like the idea of distributed source control. Just recently I've been looking at Mercurial (hg) and it looks interesting. However, ...
141
votes
6answers
45k views

Managing large binary files with git

I am looking for opinions of how to handle large binary files on which my source code (web application) is dependent. We are currently discussing several alternatives: Copy the binary files by hand. ...
91
votes
5answers
39k views

How do I push amended commit to the remote git repo?

When I've worked a bit with my source code, I do my usual thing commit and then I push to a remote repo. But then I noticed I forgot to organize my imports in the source code. So I do the amend ...
20
votes
11answers
3k views

Can we finally move to DVCS in Corporate Software? Is SVN still a 'must have' for development? [closed]

Git/Mercurial have been becoming more and more popular. I have seen plenty of articles comparing SVN with Git/Mercurial, but I am wondering if there is really any reason to still use SVN. It seems ...
510
votes
8answers
247k views

How do I fix merge conflicts in Git?

Is there a good way to explain how to resolve merge conflicts in Git?
52
votes
4answers
8k views

Definition of “downstream” and “upstream”

I've started playing with Git and have come across the terms "upstream" and "downstream". I've seen these before but never understand them fully. What do these terms mean in the context of SCMs and ...
9
votes
2answers
5k views

Vendor Branches in Git

A Git project has within it a second project whose content is being worked on independently. Submodules cannot be used for the smaller, as even the subproject must be included when users attempt to ...
31
votes
5answers
6k views

How does Git solve the merging problem?

SVN made branching much easier by making branches really cheap, but merges remain a real problem in SVN - one that Git supposedly solves. Does Git achieve this, and how? (disclaimer: All I know ...
180
votes
9answers
47k views

Git ignore file for Xcode projects

Which files should I include in .gitignore when using Git in conjunction with Xcode?
136
votes
9answers
28k views

.gitignore file not ignoring

I have an already initialized git repo that I added a .gitignore file to, how can I refresh the file index so the files I want ignored get ignored?
4
votes
3answers
2k views

To put the prefix ?<revision-number> to codes by Git/Svn

How can you put the prefix ?v=VersionNumber to each file at your repository efficiently by Git/Svn? I found out that SO uses the practise to give version numbers to each specific file in its repo. ...
183
votes
6answers
22k views

How and/or why is merging in Git better than in SVN?

I've heard a few places that one of the main ways distributed version control systems shine, is much better merging than traditional tools like SVN. Is this actually due to inherent differences in how ...
178
votes
9answers
37k views

Undoing a git reset --hard HEAD~1

Is it possible to undo the changes caused by the following: git reset --hard HEAD~1 ? If so, how? Thanks.
65
votes
6answers
8k views

Why is branching and merging easier in Mercurial than in Subversion?

Handling multiple merges onto branches in Subversion or CVS is just one of those things that has to be experienced. It is inordinately easier to keep track of branches and merges in Mercurial (and ...
115
votes
16answers
8k views

What are the relative strengths and weaknesses of Git, Mercurial, and Bazaar?

What do folks here see as the relative strengths and weaknesses of Git, Mercurial, and Bazaar? In considering each of them with one another and against version control systems like SVN and Perforce, ...
36
votes
6answers
8k views

git: how to insert a commit as the first, shifting all the others?

I've asked before about how to squash the first two commits in a git repository. While the solutions are rather interesting and not really as mind-warping as some other things in git, they're still a ...
17
votes
2answers
4k views

What are .git/info/grafts for?

I am trying to figure out what is the 'grafts' in the Git. For example, in one of the latest comments here, Tobu suppose to use git-filter-branch and .git/info/grafts to join two repositories. But I ...
187
votes
11answers
92k views

What GUIs exist for Git on Windows

I use Subversion via TortoiseSVN but I hear good things about Git. Are there any similar tools available for Git on Windows? Feel free to answer with tools which still in early development.
59
votes
14answers
6k views

Best Version control for lone developer [closed]

I'm a lone developer at the moment; please share you experiences on what is a good VC setup for a lone developer. My constraints are; I work on multiple machines and need to keep them synced up ...
23
votes
8answers
6k views

Flexible vs static branching (GIT vs Clearcase/Accurev)

My question is about the way in which GIT handles branches: whenever you branch from a commit, this branch won’t ever receive changes from the parent branch unless you force it with a merge. But in ...
25
votes
6answers
2k views

What makes some version control systems better at merging?

I've heard that many of the distributed VCSs (git, mercurial, etc) are better at merging than traditional ones like Subversion. What does this mean? What sort of things do they do to make merging ...
19
votes
7answers
532 views

Git: Ignore files for public repository, but not for private

I'm deploying a Rails app on Heroku (for now) via git, and would also like to have a public version for people to look at. Some files are sensitive and should only be committed and pushed in the ...
10
votes
5answers
914 views

How do different version control systems handle binary files?

I have heard some claims that SVN handles binary files better than Git/Mercurial. Is this true and if so then why? As far as I can imagine, no version control system (VCS) can diff and merge changes ...
186
votes
19answers
143k views

Best visual client for Git on Mac OS X? [closed]

I'm looking for a nice, Mac OS X-like, client for Git. As an example, I use Versions for Subversion and it's exactly what I'd like to purchase for Git access. Suggestions?
77
votes
7answers
84k views

Git: Remove file accidentally added to the repository

I had a conflict in a merge. Git creates filename.orig and filename.remote when a conflict happens. I resolved the conflict, but somehow filename.orig got added to the repository several commits ago ...
23
votes
7answers
896 views

Git - Committing Machine Specific Configuration Files

A common scenario when I develop is that the codebase will have several config files which require machine specific settings. These files will be checked into Git and other developers will always ...
17
votes
5answers
8k views

msysgit on windows — what should I be aware of, if any?

This is related to another question I asked recently. When installing msysgit, the installer presents 3 options related to system path: Never change windows environment. With this option, you have ...
6
votes
2answers
1k views

How can I track system-specific config files in a repo/project?

I have a ruby project, and the database host and port might be different on dev and production. I need a way to get different values for those into my scripts for the two environments. The project ...
89
votes
3answers
17k views

git-svn: how do I create a new svn branch via git?

I have a git repository which tracks an svn repository. I cloned it using --stdlayout. I created a new local branch via git checkout -b foobar Now I want this branch to end up in …/branches/foobar ...
40
votes
9answers
2k views

What makes merging in DVCS easy?

I read at Joel on Software: With distributed version control, the distributed part is actually not the most interesting part. The interesting part is that these systems think in terms ...
20
votes
9answers
2k views

git commit frequency

Since i switched to git from svn i started make more commits every time i recompile and my tests pass i commit my work. In the end i end up committing function by function. I also track some other ...
198
votes
13answers
50k views

How to migrate SVN with history to a new Git repository?

I read git manual, FAQ, Git - SVN crash course, etc. and they all explain this and that, but nowhere can you find a simple instruction like: SVN repository in: svn://myserver/path/to/svn/repos Git ...
62
votes
5answers
9k views

Git interoperability with a Mercurial Repository

I use GIT on a Mac. Enough said. I have the tools, I have the experience. And I want to continue to use it. No wars here... The problem is always with interoperability. Most people use SVN, which is ...
99
votes
13answers
37k views

git-upload-pack: command not found, how to fix this correctly

I have been using git to keep two copies of my project in sync, one is my local box, the other the test server. This is an issue which occurs when I log onto our remote development server using ssh; ...
44
votes
4answers
10k views

Collapsing a git repository's history

We have a git project which has quite a big history. Specifically, early in the project there were quite a lot of binary resource files in the project, these have now been removed as they're ...
32
votes
13answers
4k views

R and version control for the solo data analyst

Many data analysts that I respect use version control. For example: http://github.com/hadley/ See comments on http://permut.wordpress.com/2010/04/21/revision-control-statistics-bleg/ However, I'm ...
28
votes
10answers
13k views

Moving from CVS to git: $Id:$ equivalent?

I read through a bunch of questions asking about simple source code control tools and git seemed like a reasonable choice. I have it up and running and it works well so far. One aspect that I like ...
15
votes
3answers
5k views

git svn workflow - feature branches and merge

I am using git-svn with the following workflow now git clone <SVN TRUNK URL> #done once subsequently when I work on a feature git branch featureZ git checkout featureZ #make edits for ...
8
votes
7answers
686 views

Distributed Version Control “killer applications”

Considering switching to Mercurial or Git? We are too. I'm currently studying the benefits of DVCS which turn out to be vast, lust and must. I would love to hear from the community typical usage ...
6
votes
4answers
2k views

Team Foundation Server and branching characteristics, compared to others

What are the branching characteristics of TFS? I am asking the question because I don't have experience of the tool. Let me discuss what context I am putting it in... Early Branching/Heavy ...

1 2 3 4 5 13