Tagged Questions
A "branch" is term used in version control systems to represent an independent line of development. Depending on the system, a repository can contain one or more branches. Branches are merged when changes need to propagate from one branch into another.
390
votes
10answers
66k views
How do you make an existing git branch track a remote branch?
I know how to make a new branch that tracks remote branches. But how do I make an existing branch track a remote branch. I know I can just edit the .git/config file but it seems there should be an ...
311
votes
20answers
86k views
What do “branch”, “tag” and “trunk” really mean? [closed]
I've seen these words a lot around subversion (and I guess general repository) discussions.
Myself I have been using svn for my projects the last few years, but I've never grasped the complete concept ...
181
votes
3answers
56k views
Git how to create remote branch
I created a local branch which I want to 'push' upstream. There is a similar question here on Stackoverflow on how to track a newly created remote branch.
However, my workflow is slightly different. ...
164
votes
3answers
26k views
How do I delete a Git branch both locally and in Github?
I created a bugfix branch to fix a bug on a project that I had forked on Github. I gave a pull request to the developer to incorporate my fix, but the developer decided to implement a different fix ...
140
votes
10answers
45k views
How do you merge selective files with git-merge?
I'm using git on a new project that has two parallel -- but currently experimental -- development branches:
master: import of existing codebase plus a few mods that I'm generally sure of
exp1: ...
128
votes
3answers
27k views
Differences in git branches
I want to merge two branches that have been separated for a while and wanted to know which files have been modified.
Came across this link: http://linux.yyz.us/git-howto.html which was quite useful.
...
118
votes
1answer
11k views
Git: How to move existing work to new branch?
I started some work on a new feature. After coding for a bit I decided this feature should be on its own branch. How do I move the existing uncommitted changes to a new branch and reset my current ...
92
votes
6answers
65k views
git push current branch
I use the following command to push to my remote branch:
git push origin sandbox
If I say
git push origin
Does that push changes in my other branches too, or does it only update my current ...
86
votes
1answer
11k views
Why does git use fast-forward merging by default?
Coming from mercurial, I'm using branches to organize features.
Naturally I want to see this work-flow in my history as well.
I started my new project using git and finished my first feature. While ...
77
votes
5answers
9k views
Mercurial: Named Branches vs Multiple Repositories
We're currently using subversion on a relatively large codebase. Each release gets its own branch, and fixes are performed against the trunk and migrated into release branches using svnmerge.py
I ...
75
votes
7answers
22k views
How do you Remove an Invalid Remote Branch Reference from Git?
In my current repo I have the following output:
$ git branch -a
* master
remotes/origin/master
remotes/public/master
I want to delete 'remotes/public/master' from the branch list:
$ git branch ...
66
votes
7answers
23k views
git: rename remote branch
I have the branch master which tracks the remote branch origin/master.
I want to rename them to "master-old" both locally and remote. Is that possible? For other users who tracked origin/master (and ...
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 ...
62
votes
11answers
65k views
What is trunk, branch and tag in subversion?
What is a trunk, branch and tag in subversion and what are the best practices to use them.
What tools I can use for subversion in Visual Studio 2008?
58
votes
3answers
8k views
Can I unshelve to a different branch in tfs 2008?
Let's assume that some developer in my team shelved his changes that he did in branch A. And I am working on branch B. Can I unshelve his changes into branch B? (By GUI or command prompt)
57
votes
3answers
10k views
How to correctly close a feature branch in Mercurial?
I've finished working on a feature branch feature-x. I want to merge results back to the default branch and close featrure-xh in order to get rid of it in the output of hg branches.
I came up with ...
55
votes
3answers
17k views
best practices in mercurial: branch vs. clone, and partial merges?
...so I've gotten used to the simple stuff with Mercurial (add, commit, diff) and found out about the .hgignore file (yay!) and have gotten the hang of creating and switching between branches (branch, ...
52
votes
3answers
19k views
master branch and 'origin/master' have diverged, how to 'undiverge' branches'?
I'm kind of a git Noob and somehow I got my master and my origin/master branch to diverge. I actually don't want them to be diverged. How can I view these differences and 'merge' them?
50
votes
4answers
6k views
Git: how to merge my local, working changes into another branch
How can I do this in git:
My current branch is branch1 and I have made some local changes. However I now realize that I actually meant to be applying these changes to branch2. Is there a way to ...
49
votes
4answers
16k views
Switch branch names in git
There may be more than one way to ask this question, so here's a desciption of the problem. I was working on master and committed some stuff and then decided I wanted to put that work on hold. I ...
40
votes
2answers
14k views
Use TortoiseSVN to merge branch changes with the trunk
Using TortoiseSVN, I need to take changes I've done in a branch and then merge them with Trunk.
I am the only developer on this project, so I know trunk hasn't changed. I am learning SVN so that ...
39
votes
1answer
7k views
Difference between a branch, fork and clone in git?
Can someone help me understand the difference between a branch, a fork and a clone in Git?
39
votes
19answers
16k views
Branching Strategies
The company I work for is starting to have issues with their current branching model, and I was wondering what different kinds of branching strategies the community has been exposed to?
Are there any ...
38
votes
2answers
7k views
Mercurial — revert back to old version and continue from there
I'm using Mercurial locally for a project (it's the only repo there's no pushing/pulling to/from anywhere else).
To date it's got a linear history. However, the current thing I'm working on I've now ...
36
votes
3answers
19k views
How to get the changes on a branch in git
What is the best way to get a log of commits on a branch since the time it was branched from the current branch? My solution so far is:
git log $(git merge-base HEAD branch)..branch
The ...
35
votes
14answers
2k views
Subversion - should anyone be developing off the trunk?
When using Subversion, should developers be working off the trunk or should the trunk be only used for merges from each individual developer's branch and watched by a continuous integration service?
...
35
votes
10answers
8k views
Best branching strategy when doing continuous integration?
What is the best branching strategy to use when you want to do continuous integration?
Release Branching - Unstable Trunk:
or
Feature Branching - Stable Trunk:
Does it make sense to use both of ...
35
votes
4answers
9k views
Git commit against tag with no branch
If I check out a tagged version of my source code without creating a branch, Git indicates that I'm not associated with any branch at all. It's happy to let me make changes and check them in though. ...
35
votes
5answers
7k views
Backing Out a backwards merge on Mercurial
How do you reverse the effect of a merge on polarised branches without dying of agony?
This problem has been plaguing me for months and I have finally given up.
You have 1 Repository, with 2 Named ...
35
votes
11answers
22k views
Subversion Branch Reintegration
When a branch is reintegrated to the trunk, is that branch effectively dead? Can you make modifications to the branch after the reintegration and merge those back into the trunk at a later date?
34
votes
4answers
10k views
Track all remote git branches as local branches
Tracking a single remote branch as a local branch is straightforward enough.
$ git checkout --track -b ${branch_name} origin/${branch_name}
Pushing all local branches up to the remote, creating ...
30
votes
7answers
9k views
Pretty git branch graphs
I've seen some books and articles have some really pretty looking graphs of git branches and commits. Is there any tool that can make high-quality printable images of git history?
29
votes
4answers
5k views
What is a git topic branch?
What is a git topic branch? Does it differ from an ordinary branch in some way? Are there any branches that are not topic branches?
28
votes
1answer
3k views
branch from a previous commit using git
If I have n commits, how can I branch from the n-3 commit? I can see the hash of every commit.
28
votes
6answers
10k views
git branch naming best practices
I've been using a local git repository interacting with my group's CVS repository for several months, now. I've made an almost neurotic number of branches, most of which have thankfully merged back ...
27
votes
2answers
5k views
SVN Mergeinfo properties on paths other than the Working Copy root
I have an svn repository where I have trunk and a branch.
I intend to merge the trunk into the branch at regular intervals, however, when I do this I see many property status changes, in additional ...
26
votes
3answers
6k views
Why can't I push this change to my 'main' mercurial repository?
I am trying to grok Mercurial and hope I am just getting confused here!
I have a repository ('main') that I have cloned ('clone'), , both on my own machine. Both were completely in sync with each ...
25
votes
3answers
2k views
Trimming GIT Checkins/Squashing GIT History
I check my code into a GIT branch every few minutes or so, and the comments end up being things like "Everything broken starting again" and other absurdities.
Then every few minutes/hours/days I do a ...
25
votes
6answers
5k views
Finding a branch point with Git?
I have a repository with branches master and A and lots of merge activity between the two. How can I find the commit in my repository when branch A was created based on master?
My repository ...
25
votes
2answers
9k views
What is the simplest way to do branching and merging using Tortoise SVN?
I have not found a really simple "how to" any where so I came up with my own through trial and error and wanted to share it, i.e. I will answer this question myself.
25
votes
6answers
10k views
git: Switch branch and ignore any changes without committing
I have got the git branch I'm working on to a nice place. So I make a commit with a useful commit message. I then absentmindedly make minor changes to the code that are not work keeping. I now want to ...
24
votes
5answers
4k views
Howto determine when a git branch was created
Is there a way to determine when a git branch was created? I have a branch in my repo & and I don't remember creating it... thought maybe seeing the creation timestamp will jog my memory.
23
votes
2answers
3k views
Subversion Branch Reintegration in v1.6
Per this old thread, using svn 1.5, reintegrating a branch multiple times is problematic, and should be avoided.
There has been some rumbling to the effect that, "This is a known issue, and should be ...
23
votes
3answers
2k views
Can I make fast forwarding be off by default in git?
I can't really ever think of a time when I would use git merge rather than git rebase and not want to have a commit show up. Is there any way to configure git to have fast forwarding off by default? ...
23
votes
14answers
1k views
Refactoring and concurrent development branches
You have several maintenance branches for existing releases of your software. Some developers are making direct changes in the maintenance branches, and merging periodically into the trunk. Now comes ...
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
2answers
3k views
Git: Create a branch from unstagged/uncommited changes on master
Context: I'm working on master adding a simple feature. After a few minutes I realize it was not so simple and it should have been better to work into a new branch.
This always happens to me and I ...
22
votes
15answers
3k views
21
votes
8answers
1k views
Branch descriptions in git
Is there a way in git to have a 'description' for branches? While I try to use descriptive names, working for a while on a single branch sometimes dampens my memory of why I made some of the other ...
21
votes
1answer
2k views
Managing release branches in Mercurial
Recently I switched from SVN to Mercurial. Now I wonder how to realize my intended branching work flow in Mercurial according to good practice, hoping other developers understand what happens in the ...