Tagged Questions

135
votes
12answers
36k 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 ...
109
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, ...
95
votes
22answers
78k 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 ...
85
votes
6answers
3k 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 ...
80
votes
2answers
22k views

How to git-svn clone the last n revisions from a Subversion repository?

Problem How do you create a shallow copy with git-svn from a Subversion repository, i.e. how do you pull only the last three revisions? The git clone command can get the last n revisions from a Git ...
72
votes
4answers
6k views

Merging: Hg/Git vs. SVN

I often read that Hg (and Git and...) are better at merging than SVN but I have never seen practical examples of where Hg/Git can merge something where SVN fails (or where SVN needs manual ...
72
votes
7answers
12k views

Pushing an existing git repository to SVN

I've been doing all my work in Git and pushing to GitHub. I've been very happy with both the software and the site and I have no wish to change my working practices at this point. My PhD adviser is ...
68
votes
9answers
28k 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), ...
67
votes
5answers
7k views

Fork and synchronise Google Code Subversion repository into GitHub

How can I fork and keep in sync with an Google Code Subversion repository that I don't have write access to, into a GitHub repository? I want to be able to develop my own features in my Git ...
66
votes
7answers
14k views

Is git-svn dcommit after merging in git dangerous?

My motivation for trying out git-svn is the effortless merging and branching. Then I noticed that man git-svn(1) says: "Running git-merge or git-pull is NOT recommended on a branch you plan to ...
58
votes
5answers
8k views

Is it possible to have a subversion repository as a git submodule?

Is there a way to add a subversion repository as a git submodule in my git repository? Something like: git-svn submodule add https://svn.foo.com/svn/proj --stdlayout svn-project Where ...
58
votes
6answers
7k 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 ...
55
votes
14answers
5k views

Best Version control for lone developer

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 ...
52
votes
37answers
4k views

Getting started with Version Control

I need to implement version control, even for just the developing I do at home. I have read about how great Subversion is for the past couple years and was about to dedicate myself to learning this ...
47
votes
3answers
6k views

Git serve: I would like it that simple

I want to know how to simply publish over http = much like Mercurial's hg serve! On the Windows/work box do this: git serve and then on the Linux box SIMPLY go: git clone http://project project ...
42
votes
11answers
16k views

examining history of deleted file

If I delete a file in Subversion, how can I look at it's history and contents? If I try to do svn cat or svn log on a nonexistent file, it complains that the file doesn't exist. Also, if I wanted to ...
40
votes
10answers
15k views

Google Code + SVN or GitHub + Git

Let me start by telling you that I never used anything besides SVN and I'm also a Windows user. I have a couple of simple projects that are open-source, others are on their way when I'm happy enough ...
37
votes
3answers
8k views

How to have git log show filenames like svn log -v

SVN's log has a "-v" mode that outputs filenames of files changed in each commit, like so: jes5199$ svn log -v ------------------------------------------------------------------------ r1 | jes5199 ...
36
votes
8answers
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 ...
31
votes
2answers
2k views

Describe your workflow of using version control (VCS or DVCS)

I'd like to learn other people workflow when using either vcs or dvcs. Please describe your strategy to handle the following tasks: Implement a feature Fixing bugs (during development and ...
30
votes
3answers
4k views

Retroactively Correct Authors with Git SVN?

I have a repository which I have already cloned from SVN. I've been doing some work in this repository in its Git form and I would hate to lose that structure by cloning again. However, when I ...
29
votes
5answers
13k views

git-svn on Windows. Where to get binaries?

I want to use git as a local repository against a remote SVN repository. I installed version 1.6.0.2 from http://code.google.com/p/msysgit/downloads/list. According to the documentation ...
29
votes
17answers
2k views

How do you deal with configuration files in source control?

Let's say you have a typical web app and with a file configuration.whatever. Every developer working on the project will have one version for their dev boxes, there will be a dev, prod and stage ...
28
votes
5answers
5k 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 ...
27
votes
5answers
8k views

How do I keep an svn:external up to date using git-svn?

Treating my repository as a SVN repo, I get: svn co http://myrepo/foo/trunk foo ... foo/ bar/ baz/ -> http://myrepo/baz/trunk Treating it as a Git repo, I get: git svn clone ...
26
votes
3answers
6k views

SVN external in GIT

I have two SVN project using sharing another SVN using svn:externals. I want to have that same structure with GIT but I can't find how.
26
votes
12answers
2k views

Should I look at version control systems beyond Subversion?

Within the last year I have become addicted to subversion. I am an only developer and I also work on a few of my own projects. With SVN its really easy to manage everything - and because it is hosted ...
23
votes
8answers
4k views

Is using a central repository going against GIT's purpose?

If you are in a corporate setting with many people working on a particular application, is it going against the grain of a distributed version control system to have an official central repository? ...
23
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 ...
23
votes
4answers
12k views

How do I make git-svn use a particular svn branch as the remote repository?

A word of warning: I'm a n00b to git in general. My team uses feature branches in svn, and I'd like to use git-svn to track my work on a particular feature branch. I've been (roughly) following Andy ...
22
votes
6answers
4k views

Handling renames: svn vs. git vs. mercurial

How do each of these VCS handle renames? I have found a lot of contradicting information stating that git tracks LOC (lines of code) instead of files, renames would therefore have no meaning for it.
22
votes
12answers
7k views

How to “unversion” a file in either svn and/or git

It happens to me all the time. I accidentally version a file, I do not want to be versioned (i.e. developer/machine specific config-files). If I commit this file, I will mess up the paths on all the ...
21
votes
4answers
5k views

Git format-patch to be svn compatible?

Is there any way to get a patch created with git format-patch to be svn compatible so that I can submit it to an svn repo? I'm working off an svn repo on github and want to submit my changes back to ...
19
votes
3answers
489 views

Really, a concrete example that merging in git is easier than svn?

This is a great question with some great answers. However none of them show a simple example where merging in git works better than svn. On the chance this question will be closed as a dup, can ...
19
votes
8answers
848 views

GIT for a solo developer

Outside of work I use SVN for my personal projects I wish to keep private. I use it to synchronise sources between my laptop and desktop, for off site backup and the normal advantages SCM brings. ...
19
votes
5answers
3k views

Is there a Subversion user's guide to Git?

I am a new user in Git world. I used to use Subversion (using TortoiseSVN) and it is pretty easy. I would like to try Git but i got confused by the terms. Is there any documentation/guides that can ...
19
votes
2answers
6k views

What's the git equivalent of “svn update -r”?

I'm a recent git convert. It's great to be able to use git-svn to keep my branches locally without disturbing the svn server. There was a bug that existed in the latest version of the code. I wanted ...
18
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 ...
18
votes
8answers
2k views

For home projects, can Mercurial or Git (or other DVCS) provide more advantages over Subversion?

Which free source control system is most preferable with reason for home projects and documents? I am thinking to use Subversion (as I am familiar with it). Characteristic of home project: Most ...
18
votes
6answers
8k views

Exclude .svn folders within git

I'm trying to exclude subversion's folders from being tracked by git. I tried a couple different setups for .git/info/exclude, but it doesn't seem to work. I would use git-svn, but it's a pain to ...
18
votes
14answers
2k views

Git or Subversion?

Assuming that I'm starting a new web project at home using Visual Studio, which version control system, viz. Git or Subversion will be better to use? Which one will have the least setup complexity?
18
votes
3answers
7k views

Is it possible to make git svn dcommit result in a single svn commit?

According to the manual, git dcommit “will create a revision in SVN for each commit in git.” But is there a way to avoid multiple Subversion revisions? That is, to have git merge all changes prior to ...
18
votes
6answers
3k views

partial commits with subversion

Given the case I made two independent changes in one file: eg. added a new method and changed another method. I often don't want to commit both changes as one commit, but as two independent commits. ...
17
votes
11answers
725 views

Should server/database config files, including passwords, be stored in source control?

I'm looking to hear some best practices... Assuming a web application that interacts with a few different production servers (databases, etc.)... should the configuration files that include database ...
17
votes
3answers
2k views

Can git-svn correctly populate svn:mergeinfo properties?

I am evaluating git-svn and trying to determine how well it will play with a particular svn repository. I am mostly concerned with getting git-svn to perform merges in such a way that the ...
16
votes
7answers
5k views

Looking for free GITHUB (enterprise/FI edition) alternative for private installation

Are there any good alternatives for Github Enterprise Edition for a private network? have about 30 dev's and a ton of projects. Moving away from Subversion as well so any methods to keep the history ...
16
votes
4answers
4k views

Cloning a Non-Standard Svn Repository with Git-Svn

I'm relatively new to Git, but I've found it so easy to work with at home that I'd like to use it at work where our projects are stored in Svn repositories. Unfortunately, the repositories are ...
16
votes
5answers
6k views

Dealing with SVN keyword expansion with git-svn

I recently asked about keyword expansion in Git and I'm willing to accept the design not to really support this idea in Git. For better or worse, the project I'm working on at the moment requires ...
16
votes
11answers
898 views

Source Control for Everyone?

I've got a number of non-technical users that all share a set of project files. It would be ideal to have them using version control, but I think that both subversion and git are too technical for ...
15
votes
2answers
4k views

Undo a particular commit in git

What is the simplest way to undo a particular commit that is: not in the head or HEAD Has been pushed to the remote. Because it is not the latest commit, git reset HEAD doesn't work. And ...

1 2 3 4 5 19