remote-branch Questions
2
Solved
I would like to build specific flow on our company git.
developer create a branch on his local machine and commit there some files.
dev push this branch to remote repo
Other devs cannot access t...
Spa asked 30/1, 2015 at 14:24
2
There is a remote branch called "my-remote" that I had previously pushed to with no problem. As of today, I can't push and I get different errors.
First error I got was:
hint: Updates were rejec...
Tarnopol asked 9/9, 2012 at 18:0
2
Solved
After reading this article, it makes sense to rebase to gather changes from the main branch on to my feature branch:
Git workflow and rebase vs merge questions
clone the remote repo
git checkout -...
Wasp asked 29/6, 2012 at 22:29
1
Solved
I have two local branches A and B tracking the same remote branch C. I want to keep all the branches but I want to remove connection A -> C but keep the connection B -> C. how can i do that?
Laguna asked 7/4, 2014 at 8:35
4
Solved
My situation is this... someone working on the same repo has deleted a branch from his local & remote repo...
Most people who have asked about this kind of problem on Stack Overflow, or other ...
Uxoricide asked 20/11, 2013 at 20:49
3
Solved
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 ...
Raffinose asked 11/10, 2010 at 14:18
1
Solved
Lately when I run git pull in my master branch it occasionally gives the following merge error:
Trying simple merge with 7ff9b5...
Trying simple merge with 6872cd...
Simple merge did not work, ...
Sunny asked 3/1, 2014 at 13:45
2
Solved
Suppose I have a tracking branch named 'abc' which tracks origin/master.
When I'm on 'abc' and do a git push, it pushes 'abc' to 'abc'.
How do I specify the remote push branch for it with just a '...
Linctus asked 30/8, 2010 at 10:5
1
Solved
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...
Tolland asked 10/5, 2013 at 1:28
3
Solved
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...
Winery asked 6/1, 2010 at 19:20
1
Solved
I honestly cannot find any detailed documentation of the output of git remote show (certainly not on the man page)
In particular, a clear, exact explanation of the Local sections would be apprecia...
Procathedral asked 25/3, 2013 at 22:54
4
I'm not able to figure out how to remove a remote branch.
I was trying to mimic the following GIT command:
git push origin :branchToDelete
The following code and it's variations with the empty s...
Breathless asked 9/8, 2012 at 22:15
4
Solved
In my company we have a base software that gets customized for every client. Today using SVN we have a setup like this:
/trunk
/tags
…
/branches
/client_project_x
/client_project_y
/client_pro...
Cantlon asked 4/9, 2012 at 13:17
3
Solved
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 h...
Communicable asked 8/10, 2010 at 18:20
2
Solved
Tried to use what's here, but that doesn't solve things for me.
I've got a local repo in git, cloned from a remote repo, development. I branch locally to play around with a new feature in a branch...
Perdu asked 15/5, 2012 at 16:30
3
Solved
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
Al...
Cardon asked 3/2, 2011 at 19:34
2
Solved
I have 2 remote branches :
- pending-issues-in-project
- new-issues-in-project
I tried to delete pending-issues-in-project like this :
git push origin :pending-issues-in-project, but i got th...
Vladimar asked 6/1, 2012 at 6:22
2
Solved
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, bu...
Ilion asked 13/12, 2011 at 21:24
2
Solved
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 ignore-ne...
Rimini asked 10/11, 2011 at 16:26
2
Solved
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 ...
Potence asked 11/6, 2011 at 10:42
2
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
...
Kokura asked 14/4, 2011 at 9:54
1
Solved
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, unf...
Calamint asked 2/3, 2011 at 13:16
2
Solved
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_tes...
Crosslet asked 5/11, 2010 at 18:57
2
Solved
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 con...
Bilateral asked 26/10, 2010 at 3:47
© 2022 - 2024 — McMap. All rights reserved.