remote-branch Questions
7
Solved
After doing a checkout of the remote branch releases/rel_5.4.1 using the Git GUI, I'm seeing this unexpected error message when I try to push:
fatal: The upstream branch of your current branch doe...
Monopolize asked 21/7, 2014 at 12:5
34
Solved
I migrated my repos from Bitbucket or Github. I don't think this matters but it's the only thing different. For a little while, I had two remotes set up:
origin: bitbucket
github: github
Then I re...
Simulacrum asked 26/6, 2016 at 3:9
43
Solved
Somebody pushed a branch called test with git push origin test to a shared repository. I can see the branch with git branch -r. How do I check out the remote test branch? I've tried:
git checkout ...
Kruse asked 23/11, 2009 at 14:23
5
Solved
Using git branch --all shows all remote and local branches. When does Git refresh this list?
On pull/push? And how do I refresh it using Git Bash?
Obvolute asked 1/4, 2016 at 13:58
13
Solved
I need to delete old and unmaintained branches from our remote repository. I'm trying to find a way with which to list the remote branches by their last modified date, and I can't.
Is there an eas...
Salgado asked 25/3, 2010 at 9:8
22
Solved
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 remot...
Soccer asked 12/8, 2010 at 20:37
48
Solved
My master and development branches are tracked remotely on GitHub. How do I clone both these branches?
Nobie asked 15/9, 2008 at 22:42
5
Solved
I have a local branch named 'my_local_branch', which tracks a remote branch origin/my_remote_branch.
Now, the remote branch has been updated, and I am on the 'my_local_branch' and want to pull in ...
Rights asked 30/6, 2012 at 23:38
6
Solved
I have a remote bare repository hub. I work only in the master branch.
The last sentence of this error message below makes me wonder: How do I find out which is the "default configured remote for y...
Chimb asked 31/1, 2011 at 2:19
3
Solved
I was trying to follow the instructions from Git: "Not currently on any branch." Is there an easy way to get back on a branch, while keeping the changes? but git checkout appears to be br...
Papaya asked 4/9, 2014 at 16:5
13
Solved
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 ...
Inconspicuous asked 2/7, 2009 at 2:39
5
Solved
I have one error using git on Sourcetree.
I've created a local branch called sprints/Mycompany_sprint_1 (because I want it in a category) and then I did multiple cherry picks to this branch from an...
Cogitable asked 18/11, 2019 at 16:22
9
Solved
A colleague pushed a new remote branch to origin/dev/homepage and I cannot see it when I run:
$ git branch -r
I still see preexisting remote branches.
I assume this is because my local remote ...
Ablate asked 6/10, 2012 at 19:6
4
Solved
The situation is like this:
I created remote branch from other remote develop branch -> fetched it to local -> made some changes -> git add -> git commit -> pushed to remote and made pull request....
Latter asked 14/7, 2015 at 8:27
4
Solved
How do I pull all of the remote branches to my own repository?
If I type:
git branch -a
I get a long list of branches, but if I type:
git branch
I see only two of them.
How do I pull all branches...
Szeged asked 19/9, 2013 at 10:5
11
Solved
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:
fa...
Pietrek asked 3/6, 2009 at 16:16
3
There is a new branch in the remote repository, but it does not appear in the git branches in android studio. How can I refresh that list to show the new branch?
I have tried git branch -r
but ne...
Pike asked 18/11, 2017 at 4:13
3
Solved
when I execute the command:
git branch -r, it's show just:
origin/HEAD -> origin/master
origin/development-elton
origin/master
And when execute the command:
git remote show origin, it's s...
Spoliate asked 1/3, 2016 at 20:56
1
I have a repository on bitbucket that contains three branches. I'm able to list the remote branches using a good old git branch --remote command, and everything works perfectly. However, when I vis...
Stadler asked 31/8, 2017 at 18:30
5
Solved
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 speci...
Rewarding asked 9/2, 2011 at 16:56
2
Solved
I'm fetching for remote branches and stuck in some sort of a loop.
I fetch once and get:
$ git fetch
* [new branch] minorRelease/something-> origin/minorRelease/something
And then I fetch ag...
Notate asked 28/9, 2014 at 14:28
2
Solved
I use git as a local source control system mostly for history and diff tracking. I still want to use rebase to do fixup / squash on WIP commits that I will make periodically. When I try to do git r...
Sculpsit asked 3/6, 2015 at 16:3
2
Solved
I have created a repository in local and pushed all the changes to the github.
Later i have created a new branch("git branch v2") called "v2" and did some modification and pushed that branch to git...
Hautemarne asked 10/4, 2016 at 8:27
1
Solved
I'm getting rid of the development (in purple) branch and having all subbranches branch from master (in teal) and merge to master. development branch is branched from master. If there are sub branc...
Intellection asked 29/4, 2015 at 0:3
2
Solved
I have 2 branches named developer and Current on remote. In local I'm working on branch developer and I push my changes to remote developer. The question is, how can I push from local developer to ...
Stetson asked 3/2, 2015 at 13:51
1 Next >
© 2022 - 2024 — McMap. All rights reserved.