Tagged Questions
83
votes
8answers
36k views
Git checkout on a remote branch does not work
My problem is related to:
Fatal Git error when switching branch
I try to fetch a remote branch with the command
git checkout -b local-name origin/remote-name
but I get this error message:
fatal: ...
80
votes
7answers
23k 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 ...
54
votes
3answers
18k views
git checkout remote branch
I am trying to checkout a remote branch:
Somebody pushed a branch called test with git push origin test to a shared repository. I can see the branch with git branch -r. But how can I get this branch?
...
6
votes
2answers
131 views
Git: How to push from “no branch” to a new remote branch?
I did:
git co upstream/master # To no branch.
<then did a trivial edit on some file...>
git commit -a -m "Trivial edit"
git push origin NewBranch
But got this:
$ git push origin ...
3
votes
2answers
113 views
Git sends huge amount of data after branch
I have a repository with lots of binary files (about 250MB) - I don't know if that is important.
I'm making a new branch and trying to publish it on the central server:
git checkout -b newbranch
git ...
3
votes
2answers
5k views
How to remove remote origin/refs/heads/master
Don't ask me how but I managed to get accidentally the following remote branches in a git repository:
$ git branch -r
origin/HEAD -> origin/master
origin/master
origin/refs/heads/master
...
3
votes
2answers
371 views
Push a branch of a git repo to a new remote (github), hiding its history
My organisation is preparing to release an open-source version of our software using github, however I'm not sure the best way to approach this:
We have two branches master and release, master ...
3
votes
3answers
233 views
How do I list all remote branches in Git 1.7+?
I've tried git branch -r, but that only lists remote branches that I've tracked locally. How do I find the list of those that I haven't? (It doesn't matter to me whether the command lists all remote ...
3
votes
1answer
1k views
Git clone does not bring master branch
I have a remote repository http://github.com/fernandezpablo85/Test
This repo has a master branch, but it's behind two other branches so when I clone it I get this warining:
warning: remote HEAD ...
2
votes
2answers
68 views
How to forcefully delete a remote branch in GitHub?
I have 2 remote branches :pending-issues-in-project & new-issues-in-projectI tried to delete pending-issues-in-project like this : git push origin :pending-issues-in-projectbut i got this error ...
2
votes
2answers
226 views
git add remote tracking branch to bare repo
I have a bare repo that was cloned from git.drupal.org.
I have cloned from this bare repo to various different websites.
From each of these, I push a site-specific branch onto the bare repo.
E.g. ...
2
votes
1answer
122 views
Synchronizing local git forked repo branches with changes from remote original
I found a lot of q & a about synchronizing a forked git repository with the original remote repository but none applied to my exact problem.
Let's assume I forked a project with a remote name of ...
2
votes
4answers
191 views
How to tell which remote svn branch is a local git branch tracking?
I'm a bit confused about how to commit on several svn branches from different local git branches. In particular, even though I've read many of the relates questions on this topic, there's one specific ...
2
votes
1answer
345 views
git: Why am I ahead of origin/master with X commits after I do 'git push'?
I am using a bare git repository on a server for backup, and push local changes there with 'git push' after doing 'git commit' locally.
'git status' tells me
# On branch master
# Your branch is ...
1
vote
2answers
81 views
How to share a git feature (or topic) branch with multiple developers
I'm following the the workflow described here, as I found many references pointing to this page as a good workflow. As mentioned in the article, "feature" branches are shared between developers, but ...
1
vote
2answers
80 views
Git : How to get name of the branch tracked by the current one?
In order to write a specific script, I need to check is the current branch has a tracked remote and what is the name of this remote. Is there a way to get only the name of the branch tacked by the ...
1
vote
2answers
115 views
fetch remote branch with the same name
I want to fetch a branch from a remote, but my branch name does not start with remote name, for example:
git checkout -b BRANCH origin/BRANCH
It work in some cases, but in some cases I get this ...
1
vote
1answer
110 views
Git Remote branches
I currently have Git setup with a central bare repository which is accessed by two developers via remote repositories. I've hit on a problem when I've created a branch and then tried to push that ...
1
vote
1answer
143 views
What happens if I delete a remote branch that someone else is working on?
I have created a remote branch, that I now want to delete because it is merged back into our integration branch. I do a
git push origin :name_of_branch
to delete the remote branch.
However, ...
1
vote
2answers
1k views
Configure a local branch for push to specific branch
Sorry if this question has been asked already.
Am cloning from a repo named "git_lab" which has a branch named "test"
When cloning i use "-b myname_test" to create a local branch named "myname_test" ...
1
vote
1answer
256 views
git create branch with untracked files
I've a master branch with a .gitignore file with directory X listed in it. (X is not being tracked).
When I try to add a branch tracking a remote using the command
git checkout -b mybranch ...
0
votes
1answer
38 views
What is the purpose of git tracking branches?
I created a tracking branch so whowasout.com tracked whowasout.com/master
$ git remote -v
origin git@github.com:venkatd/whowentout.git (fetch)
origin git@github.com:venkatd/whowentout.git (push)
...
0
votes
1answer
339 views
Git gui: how to push to a remote branch?
I have cloned a repository from github and checked out a remote branch. I made a change to the remote branch, committed it, but then when I try to push the change back to the remote branch I get the ...
0
votes
1answer
95 views
How to integrate svn branches into git branches with git-svn?
i have not much svn experience but i am used to work with git.
I have the following svn repository structure and revisions.
https://server/svn/solution/trunk/solution.sln @r100
...
0
votes
2answers
279 views
Head commit for all remote branches using Git
I know how to list the remote branches
$ git branch -a
And I know how to find the head commit hash of my current branch
$ git rev-parse HEAD
But I'm not sure how to list all the head commit ...