git-branch is the Git command that manages branches.

learn more… | top users | synonyms (2)

1
vote
1answer
27 views

git - move one of two files to another branch without committing either file to the current branch

This is jaw-droppingly difficult in git. Branches: B1, B2 Files: F1, F2 B1 is checked out and F1 and F2 were modified; F1 is not ready to commit, and F2 needs to be moved to B2 without committing it ...
0
votes
1answer
23 views

How to transform an old branch into a tag on GitHub

My first actually serious project on GitHub has some time ago underwent a complete change of stack - from Python to NodeJS. However, at the time being a complete git noob I created a branch with all ...
0
votes
3answers
22 views

git - make a 'fresh' feature branch while preserving current feature branch?

With respect to git. I've got a feature branch we'll call foo. In there are a number of committed changes and some uncommitted changes to implement a feature. I've made a bad assumption and a lot of ...
0
votes
1answer
16 views

Using git push feature

I was wondering what is the interpretation of git push origin master. I mean we push the commits to the origin repo's master branch. But suppose, there's a branch A. I create a new branch B keeping ...
0
votes
2answers
25 views

remove branches not on remote

==> git branch -a * master test remotes/origin/master remotes/origin/test when someone delete the remotes/origin/test,I still can see it on my computer. I know I can do this and remove the ...
0
votes
2answers
38 views

How take a merged branch out of a master branch (Github)?

I worked on a branch in my Rails app, committed, and merged it into my master, because I was happy with everything, but now I want to take out that branch again and discard those changes. Is it ...
0
votes
1answer
27 views

Branch does not exist

the command git branch --set-upstream-to develop origin/develop results in the error fatal: branch 'origin/develop' does not exist I am not sure what this means other than origin develop does ...
1
vote
1answer
25 views

How can I untrack/ignore a folder in an old branch without commiting the new changes?

Basically I accidentally added the 'files' folder to my commits, so I have four old branches of development that have the 'files' folder listed, with all the files. I don't want to make any other ...
0
votes
0answers
23 views

Does git support different remotes for argumentless push/pull in the same branch?

I have a git repository (remote origin) that is a fork of another repository (remote upstream). Now I want my local master branch to track upstream/master but push to origin/master when performing a ...
0
votes
2answers
21 views

How do you edit a branch in Git?

Coming from a SVN world, wrapping my head around Git has been a little weird, and I'm having trouble letting go of some of the practices ingrained in me from using Subversion for so long. So, for ...
0
votes
1answer
47 views

Git pull origin <branch> overwrites master?

I have a repository on Github, aav1 On my laptop I have two branches, one called master and one called vs12up The master branch was when the software was Visual Studio 2008, vs12up is converted to ...
1
vote
1answer
20 views

Move some already existing and pushed commits to a new branch

I have a feature branch about topic X, but in this branch I did commits that would be better in feature branch Y, but I forgot to create it before beginning. Is there a way to move this commits to a ...
0
votes
1answer
24 views

How to keep .gitignored files off my gh-pages branch?

In my global .gitignore file I chose to keep my IDE folders out of my versioning. So in my master branch are folders like .idea/ or *.iml files. If I now switch to branch gh-pages git keeps those IDE ...
1
vote
2answers
30 views

What is the differences between local branch, local tracking branch, remote branch and remote tracking branch

I just start using git and I got really confused between different branches. Can anyone help me to figure out what is local branches, local tracking branches, remote branches and remote tracking ...
0
votes
1answer
24 views

How to upload travis artifacts to S3 only in develop branch

I've read this blog post that explains how to configure travis to upload build artifacts to S3. How do I limit the "travis-artifacts upload" command to work only in the "develop" branch? I still want ...
2
votes
2answers
49 views

Our git repository has a branch called HEAD

I recently noticed that our git server has a branch called HEAD. I've tried doing this locally and git warns me that this is ambiguous. Are there any potential horrible problems we could encounter by ...
1
vote
1answer
29 views

Git server side branch

I am currently learning to use Git, as it is required for a project I will be managing in the future. I was hoping to be able to have branches in the repository, so that when somebody clones it, they ...
0
votes
1answer
43 views

Create branches from separate directories

I have the following directory structure: Application/V1 Application/V2 Application/V3 None of these directories are Git repositories. I can also add that each of these directories contain exactly ...
0
votes
1answer
16 views

machine parsable method of comparing the current branch to the local view of the tracking branch

I need a machine parsable way of comparing the current branch to the local copy of the tracking branch. These are the ideas I've tried, with their caveats: git status: not guaranteed to stay the ...
1
vote
0answers
64 views

Git workflow suggestion

I have a private repo on github and have about 7 developers working actively on it. My repo is branched as follows - devel - developerA-branch - developerB-branch and so on What is happening ...
1
vote
2answers
50 views

Git clean branch to save only my changes and changes from master

I have a branch, where I did some changes, but I'd originally mistaken and create it from wrong branch, so I have many different changes I don't want to have in it. So how can I clean it so I only ...
2
votes
1answer
28 views

Isolate specific folders from updating on git

I'm not that experienced with version control and it's my first time with Git. We're using BitBucket and TortoiseGit, set it up and working. Now, I would like to be able to isolate a folder (let's ...
1
vote
1answer
19 views

How does one create a multiple “syncronous” repository remote GIT branch in intelliJ

I have a large intellij project that has 12 git roots and have it set for "synchronous" repository/git root management. I can easily create a new local branch on all the repos, but I can't figure out ...
1
vote
0answers
58 views

How to share a branch with other developers under git

Here's generally speaking (I can provide more details), our workflow: 1) We have a prime repo on a remote server host. 2) We have a bare repo on a remote server host. 3) We have a clone of the bare ...
0
votes
0answers
34 views

Eclipse, Maven, Git and branches…how?

I am working with Maven, Git (branches) and Eclipse Juno as IDE. I run Maven builds manually via CLI, not under Juno and m2e. Sometimes Maven "see" older revisions of files when they are not ...
3
votes
1answer
45 views

Denying commits that are not merge commits

Here's a workflow that I use: Make changes in branch A. Checkout branch B. Merge changes from branch A to branch B. Sync (push and pull) branch B to a remote branch. Checkout branch A. Go back to ...
0
votes
1answer
28 views

Having two different branches of one repo in two different locations on my local machine

I'm currently trying to have the two branches of my repo in two completely different locations. Means I have branch master and builds. master's path should be C:\some folder\some other folder\another ...
1
vote
1answer
27 views

Git: see many branches in a single view

Is there any way to see changes from many branches in Git in a single view. For example if my project consists of scripts part and C code part, can I have them on two separate branches but still see ...
0
votes
1answer
24 views

prevent new branches being created in a git bare repo

We have our main bare repo which has a hook that is supposed to push a specific branch to another remote bare repo. The the other repo is only supposed to have the one branch. The post-receive hook ...
1
vote
1answer
18 views

Difference between git push origin prod AND git push origin prod:refs/heads/prod

When I create a new branch and then want to push it remotely, I can do: git push origin prod OR git push origin prod:refs/heads/prod What is the difference ?
1
vote
3answers
43 views

Git: how can I have modified files and still checkout other branches?

I had to modify a few files in a project, but they are configuration files and I don't want to commit them (the config is just for my environment). However, I'd still like to change branches, but when ...
1
vote
1answer
29 views

Git : Make the same edits on two different branches at the same time

I would like to know if it's possible to work on two branches simultaneously if I want to write code that is supposed to be in those two branches. So that, if I commit my changes, it actually updates ...
1
vote
1answer
22 views

windows github tool - use branch unpublish or delete?

I'm new to Github and I've been using the windows github tool which has proved a great help and handled a lot of things like SSH keys, prompts commits, discard a commit, revert commit, and it has a ...
1
vote
1answer
18 views

GitHub Multiple Repositories vs. Branching for multiple environments

This might be a very beginner question, but I'm working on a large production website in a startup environment. I just recently started using Heroku, Github, and Ruby on Rails because I'm looking for ...
2
votes
2answers
59 views

delete local branch called “remote”

I've done something incredibily stupid. I figured I should ask before I tried to "fix" it and accidentally make things worse. I tried to list all remote branches in my git repo: git branch remote ...
1
vote
3answers
31 views

what happens if I stash code in one branch and change to another branch?

I have some code that i want to commit into another branch, however i did the changes before create the branch, so now I'm in master and I want to stash the code, create a local branch, checkout it, ...
1
vote
1answer
23 views

Messing up with branches, old master branch shows files from the new branch?

As you can understand I'm still learning Git and how branch works. Anyways: I was working on a local master branch. I created and switched to a new fcwdetection branch for adding some code, using my ...
2
votes
2answers
70 views

How can always ignore a file while merge

I have a configuration file that is different in two branches. I want that this config file is tracked inside each branch but always ignored when merging branches. So, after i merge the two branches, ...
1
vote
1answer
87 views

Git branch diverged

I am new to GIT, although I understand it's concept I don't think I understand it's practice as well. I was given a branch, uitest to work on, because I may have not done the push, commit, pull ...
1
vote
1answer
54 views

fork on github, then how do I manage my contributions?

I'm a little unclear on the forkflow that is to follow a fork on github. What if I have several small independent fixes of various bugs in the original repository, of a medium-sized project, say, ...
1
vote
1answer
49 views

how to make a pull request on Git from a cloned branch stored in external folder?

I'm lost with Git... I have a forked repository abc both on Git and locally. I need to create a clone of a branch of the original repo in a separate directory (let's say abc_branch_1.1, modify things ...
4
votes
1answer
50 views

Git - Different Remote for each Branch

I'm unsure of how to ask this properly but I'll try and do my best - I'm by no means a Git aficionado, I know how to use the basic commands but not advanced terminology/functionality. I have a ...
-3
votes
2answers
72 views

GitHub: What is a “wip” branch?

When I was browsing GitHub repositories I quite often saw "wip" branches (e.g. 3.1.0-wip). What does "wip" mean? I couldn't find the answer anywhere - neither on Google nor on GitHub:help.
1
vote
3answers
55 views

Git: should merged branch be always deleted?

I have a question related to git merge workflow. When we merge one branch to another, AFAIK two things may happen: either a single commit would be created on the destination branch (in non ...
1
vote
2answers
43 views

git - two branches named the same? Difference is one lower case - one mixed case?

I am so used to typing in camelCase that I have been doing it in git. That is - until I realized git is case sensitive!! File names included. From history - at the start of this production branch ...
2
votes
1answer
94 views

Get new upstream branch with git

I've forked a repo and all of my work goes into that fork (my origin) and I merge branches upstream with pull requests. Pretty standard. But now there's a new branch in the upstream repo and I can't ...
0
votes
1answer
31 views

How to track a file only in particular branch in Git

there is a file local_settings.py of a Github repo which is ignored in .gitignore There is a production branch locally on my system.. We rebase as soon as there are updates in master. However, this ...
0
votes
1answer
49 views

How to maintain django different settings both on server and Github [duplicate]

On the production server, I certainly need to have different settings, and are different from local settings. Our opensource project is hosted on github. Thus the master branch is not production code ...
0
votes
1answer
58 views

git log not showing branches when you work alone in the project

I have found that I only see branches and the right project topology when using either gitk, sourcetree or git log if I am collaborating with other developers. But when I work alone and I create ...
1
vote
1answer
37 views

I have git repo with one branch: master. How do I rename the branch locally and on the remote repo?

I have a git repo with a single branch: the master branch. Instead, I'd like for the master branch to be called "somethingelse", that way later I can add more branches with other names. I don't want ...

1 2 3 4 5 13