The git-branching tag has no wiki summary.
193
votes
3answers
33k 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 ...
46
votes
3answers
10k views
How to replace master branch in git, entirely, from another branch?
I have two branch in my git repo:
master
seotweaks (created originally from master)
I created "seotweaks" with the intention of quickly merging it back into master, however that was 3 months ago ...
19
votes
1answer
2k views
Git: Why do I need to do `--set-upstream` all the time?
I create a new branch in Git:
git branch my_branch
Push it:
git push origin my_branch
Now say someone made some changes on the server and I want to pull from origin/my_branch. I do:
git pull
...
18
votes
3answers
509 views
Can Git really track the movement of a single function from 1 file to another? If so, how?
Several times, I have come across the statement that, if you move a single function from one file to another file, Git can track it. For example, this entry says, "Linus says that if you move a ...
18
votes
5answers
4k views
Git branch strategy for small dev team
We have a web app that we update and release almost daily. We use git as our VCS, and our current branching strategy is very simple and broken: we have a master branch and we check changes that we ...
17
votes
2answers
695 views
How do I use git-tfs and idiomatic git branching against a TFS repository?
How Do I Use git-tfs Idiomatically?
The git idiom is to check out branches to the root directory of the repository. Checking out a branch will replace the contents of the directory with the contents ...
15
votes
2answers
235 views
Xcode 4 build schemes screwed up everytime I change branches in Git
In Xcode 4, when I'm working when an iOS project, the Scheme drop down menu in Xcode's toolbar normally displays a scheme for iPhone X.X Simulator, iPad X.X Simulator and iOS Device.
When changing ...
15
votes
1answer
2k views
How to rename a local git branch?
I do not want to git: rename remote branch
I want to use simplest way to rename local branch, which is not pushed to remote branch.
12
votes
2answers
2k views
Git: move branch pointer to different commit
To move the branch pointer of a checked out branch, one can use the git reset --hard command. But how to move the branch pointer of a not-checked out branch to point at a different commit (keeping all ...
12
votes
3answers
2k views
Git undo local branch delete
I just deleted the wrong branch with some experimental changes I need with git branch -D branchName.
How do I recover the branch?
11
votes
3answers
240 views
Git deleting things mysteriously (edit: actually django-storages)
The issue: sometimes, but not every time, Git deletes the static directory of a repo. We're not sure what triggers it, but it appears to happen when either merging between branches or sometimes even ...
11
votes
3answers
593 views
Git - When to Delete Branches
Suppose we have an application that's stable.
Tomorrow, someone reports a big ol' bug that we decide to hotfix right away. So we create a branch for that hotfix off of "master", we name it ...
11
votes
6answers
734 views
Showing Git branch structure
Is there a way to show only the branch structure in Git? There are a number of tools that show the commits graphically, but in my case the list is so long that it's impossible to see the structure. I ...
10
votes
3answers
211 views
In Git: view a file in a different branch without changing branches
Is it possible to open a file in a git branch with out checking out that branch? If show how?
Essentially I want to be able to open a file in my github pages branch without switching branches all ...
10
votes
5answers
303 views
Sharing files across branches in Git
There are a bunch of files in my project that are sometimes modified but always shared among many different branches. Examples include build scripts, batch files that include paths, etc. Even the ...
10
votes
1answer
1k views
Switch current branch in git bare repository
I actually want to remove a branch in the bare repository i am working with, but this task hits a dead end because I cannot switch away from the master repository without a 'work tree' which a bare ...
10
votes
2answers
8k views
Git create branch from current checked out master?
There is a git controlled folder on a server where the main branch is checked out and a whole pile of files have been modified and not committed. Is there a way for me to commit the changes to a ...
8
votes
1answer
370 views
How to pull remote branch from somebody else's repo
I've got a project hosted on GitHub which somebody has forked. On their fork, they've created a new branch "foo" and made some changes. How do I pull their "foo" into a new branch also named "foo" in ...
8
votes
5answers
404 views
getting git branches of a certain age
My organization is using git branching extensively. As a result, we have produced over 2000 branches in the past year. We are now trying to adopt a strategy for cleaning up all the old branches that ...
8
votes
1answer
4k views
git remote prune – what am I doing wrong?
From the man page:
Deletes all stale tracking branches under <name>.
These stale branches have already been removed from the remote repository
referenced by <name>, but are still locally ...
7
votes
2answers
198 views
Why does Git not store the branch name as part of the commit?
Please note: I'm not trying to restart the argument whether Mercurial or Git is better, I just have a technical question that I, as a Mercurial user, don't understand. I'm also not sure whether SO is ...
7
votes
1answer
81 views
Git branching example from Pro Git
I'm going through the Pro Git book, trying to get my head around branching and merging in DVCS. So far it's been a great resource, but I'm having a little trouble with this section.
In Figure 3-8, we ...
7
votes
2answers
230 views
Database migrations in a complex branching system
In our current development workflow we have introduced database migrations (using Ruckusing) to keep our developers' db schema's in sync. It works great, is pretty straightforward in use but now we ...
7
votes
2answers
457 views
Relationship between n GIT branches
If I have n GIT branches, how do I easily show the relationship between these branches?
Basically I am interested in seeing a tree of a subset of all the branches in my repository. I am however not ...
7
votes
2answers
159 views
Git Discipline: combining multiple feature branches, but still keeping them separate?
The current project I'm working on, I am trying to explore a bunch of different ideas which usually manifest themselves as a bunch of feature branches. The features I'm working on are generally ...
7
votes
2answers
3k views
Git: How to “undo” a merge
The situation:
Starting with the Master at A I branched and made some changes at B then merged that branch back in (C). After making some more changes I was at D but found I needed to deploy the code ...
7
votes
1answer
1k views
Why does git-rebase give me merge conflicts when all I'm doing is squashing commits?
We have a Git repository with over 400 commits, the first couple dozen of which were a lot of trial-and-error. We want to clean up these commits by squashing many down into a single commit. Naturally, ...
6
votes
1answer
167 views
How to change git branch output order
When I type git branch, I receive a list of branches that appear to be sorted alphabetically instead of being sorted by their creation time.
Is there a way to make the output of git branch sorted by ...
6
votes
5answers
550 views
How to delete the old history after running git filter-branch?
Suppose I have such tree:
... -- a -- b -- c -- d -- ...
\
e -- a -- k
and I want it become just
... -- a -- b -- c -- d -- ...
I know how to attach branch name to ...
6
votes
2answers
81 views
“Layering” git repository
I'm using git on a daily basis for a while now, and this time I've run into a problem which I could describe like this.
I have a repository which holds entire website structure, and web root is in ...
6
votes
3answers
941 views
Git Merge and Fixing Mixed Spaces and Tabs with two Branches
I've gone through some similar SOQ's and have not seen an adequate solution for this case.
I've noticed that in many files there is a dirty mix of tabs and spaces used for indenting. The coding ...
6
votes
1answer
307 views
Git branching stategy for feature branches and common code
I've been using the git branching strategy outlined here http://nvie.com/posts/a-successful-git-branching-model/
So far its been working really well for me.
The question I often find my self asking ...
6
votes
2answers
166 views
Why doesn't Git remove some files when I switch a branch?
I have had this happen to me often. I am working on a master branch and I need to test a plugin, so I create a new branch and check it out. I download the plugin into the project directory and test it ...
6
votes
2answers
557 views
block push of trivial merge to git server
A while back I asked our developers to use rebase instead of merge before pushing. Eliminating trivial merges makes for a much easier to follow commit graph (ie: gitk, git log).
Sometimes folks still ...
6
votes
3answers
252 views
What are some of the most common Git branching schemes/commit lifecycles?
First off, sorry if this is a duplicate, but I tried searching and all I could find was stuff on how to make branches in Git and whatnot. That's not what I'm looking for so much; I'm trying to figure ...
6
votes
1answer
476 views
Git branching / rebasing good practices
I have a following scenario:
3 branches:
- Master
- MyBranch branched off Master for the purpose of developing a new feature of the system
- MyBranchLocal branched off MyBranch as my local copy of ...
6
votes
3answers
5k views
Sync GIT and ClearCase
I am currently working on ClearCase and now migrating to GIT.
But we need this migration in a way that all work will be done in GIT and the data will be synced backed to ClearCase stream. We will have ...
5
votes
3answers
225 views
Efficient project architecture with git
Firstly, let me introduce general architecture of a project.
It is hierarchical. We develop server application for our customers. It is stored on main server.
Say, local server 1, local server 2, ...
5
votes
3answers
295 views
“git branch” VS “git checkout -b”
I used git checkout -b to create a new branch. I think that git branch does the same thing.
Can anyone explain what is the difference between these two commands, if there is any?
5
votes
1answer
77 views
Remove incorrect merges from repository
I'm not happy with the title but I think I overcomplicated my explanation and it is as simple as above in the end.
We are using a branching model with a central origin repo, a "develop" branch, with ...
5
votes
1answer
437 views
Git valid branch name rules
I tried:
git branch "MyProj/bin/ ignored"
and received:
fatal: 'MyProj/bin/ ignored' is not a valid branch name.
The git-branch man page points to the git-check-ref-format man page to get the ...
5
votes
4answers
138 views
Why is it necessary to lose untracked files when you set up github pages?
Github has a feature where you can put up HTML pages. (Details here).
Anyway, I recently used this to put up the aforementioned page. The basics of the instructions to do so are:
// In order to ...
5
votes
2answers
284 views
git push to remote branch
Folks,
I had cloned a repo. I created a branch out of it to work on a feature by issuing the following command:
git branch fix78
then I worked on that branch by
git checkout fix78
I continued to ...
5
votes
2answers
583 views
git-flow: how to checkout release branch from origin?
What is the perferred workflow to pull a published release branch from the central repo using git-flow?
eg:
Mike made a release branch, he published it through "git flow release publish 1.0"
Jane ...
5
votes
2answers
1k views
git-svn - Checkout a remote branch that already exists in svn when my master is already a branch. Explain this .git/config
This is a bit of an oddball question given how the team I've joined is using SVN. Basically, the svn repository follows a standard layout, but trunk really hasn't been touched in 1.5 years or so and ...
5
votes
2answers
579 views
Git - what is the purpose of an “integration branch”?
If a branching strategy consists of n feature branches, a "master" (mainline) and an "integration" branch. What is the purpose of the integration branch? Why can testing and integration not be ...
5
votes
2answers
1k views
Move commits from master onto a branch using git
I'm trying to learn how to use Git effectively and I'm wondering how I should (good practice/bad practice?) solve the following case:
Say I have the following chain of commits in master:
Initial ...
4
votes
1answer
29 views
Pulling a branch from origin merged it into my local branch and I need to revert that
I was working on a local branch and I needed to pull down one of the branches from origin so I issued the following command:
git pull origin design
When I did that, that branch ended up being merged ...
4
votes
3answers
114 views
How can I avoid an accidental dcommit from a local branch
Sometimes, I create local branches in git, and I'd like to get a warning message when I try to dcommit from them.
How can I prevent myself from accidentally dcommiting from a local branch?
4
votes
4answers
96 views
Git: created new branch from a wrong branch
I usually create new branch from develop
git checkout -b new-feature develop
then after the last commit I merge back to develop
git checkout develop
git merge new-feature
but this time I created ...