The remote-branch tag has no wiki summary.
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 ...
5
votes
1answer
103 views
Detailed explanation of 'git remote show'
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 ...
1
vote
1answer
37 views
git - swap/exchange a remote branch
I have two remote branches:
feature233
v1.9.12.
I need to rename the 1. branch to v1.9.12 and the 2. branch to v1.9.15 :
feature233 --> v1.9.12
v1.9.12 --> v1.9.15
Since the new name of ...
0
votes
1answer
19 views
Why git fetch didn't fetch one of my remote branch reference
I have one remote repository and two working dirs.
Both are setup with this one remote repository.
From working DIR_1 I make push from branch dev like that:
git push origin dev
Next when I'm on ...
0
votes
3answers
64 views
In Git, are remote tracking branches required?
Can 2 Git clones push/pull to each other without having remote tracking branches representing the other? I know they're very useful most of the time, but I might occasionally want to pull/push between ...
0
votes
1answer
45 views
How to compare local branch with remote branch in Mercurial
Can someone show me how to compare a local branch with remote branch to see the all the differences or new changesets added?
I only want to see what's new like hg incoming or hg outgoing. I don't ...
2
votes
2answers
84 views
How can I get remote git branches using Node.js?
I'm using this awesome library called Gift to do all of my standard git things (pulling, reading commits, etc). However, I can't seem to get the remote branches. I believe the git branch -r command ...
1
vote
1answer
90 views
Git : Do not allow users to push a new branch to remote repo
Sometimes by mistake some of users tend to push their local branches to a remote repo creating a new branch on the remote repo. How can we disallow the users to create new branches on a remote repo ...
0
votes
1answer
20 views
Error in checkout a remote server in Git
I have cloned a remote Git server. but when I want to checkout it with the below code it give me error:
$ git checkout master origin/master
error: pathspec 'origin/master' did not match any file(s) ...
1
vote
1answer
42 views
Strange remote branch in git
The git branch -a command gives me following output:
master
stable
remotes/origin/master
remotes/origin/restoring_entered_information_from_post
remotes/origin/stable
but there is no such a branch ...
2
votes
1answer
37 views
What is the recomended workflow in case that my remote branch get updated by other in the middle of my next change set?
Lets say that I push a branch B to the server with commits C1 and C2 and continue working on commits C3. Then other programmer push to B two commits, C4 and C5 and I get notified. My question is, what ...
2
votes
1answer
65 views
Set remote branch to a commit we don't have locally
Some intern did a force push on master yesterday. After we've done scolding, ;) we looked at the result. Luckily, we had an almost up to date version of the master on one machine, only some pull ...
1
vote
1answer
237 views
Git: Cannot see new remote branch
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 ...
5
votes
1answer
4k views
Can't push local changes to an existing remote branch
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 rejected ...
3
votes
2answers
339 views
How to allow remove remote branches at gitolite and forbid non fast forward
We need to allow developers:
1) to create topic branches and save them at remote repo.
2) Do changes.
3) Do merge to 'development' branch.
4) Remove topic branch (git push origin ...
4
votes
4answers
96 views
Best pratice for multiple custom projects and Git
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
...
1
vote
1answer
389 views
restore all refs from git bundle
How to restore all remote branches from backup (git bundle).
Backup:
$ git bundle create /tmp/dp --all
$ git bundle list-heads /tmp/dp | head -n5
f37c9fc7f0ce121568f42fb01390b1862c67f308 ...
0
votes
4answers
324 views
How to remove remote branch with JGit
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 ...
0
votes
1answer
69 views
Bazaar Explorer hangs when parent branch is unreachable
I created a shared repository on my laptop. In that repository, I created a branch named trunk. Then I created an unbound branch of trunk on my desktop so I could do work on either machine and sync my ...
1
vote
1answer
57 views
I've changed my branching system. How can I sort it out on github?
So I've kind of done something a bit unusual. I had a couple of branches, master and dev. master had the latest stable version, and dev would have the bleeding edge, and would be merged into master at ...
1
vote
2answers
119 views
Identifying a tag belongs to which branch in git
I first did repo sync to a manifest for a branch name myBranch. I then get the tags from
git tag -l
Now I want to know using git that each tag obtained as a result of git tag -l was actually ...
2
votes
2answers
423 views
Update a local branch with the changes from a tracked remote branch
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 ...
4
votes
1answer
115 views
GIT Rebase a Branch that is collaborated on?
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 -b ...
0
votes
1answer
166 views
git add remote a developer's local branch
How does one add a local branch from that of another developer? My colleague's branch is not out on origin.
Thanks!
2
votes
1answer
187 views
git pull from wrong remote branch
My origin has a fixes and a fixes_v3 branch. My client has just fixes. I do a git pull git+ssh:/.../mygitrepo and suddenly on my client I have all the fixes_v3 code in the fixes branch. Why on ...
3
votes
1answer
119 views
Where to set the branch in mercurial?
I am new to the Mercurial and would like to seek some experienced advices about where to set branch under situation of my team's project. The project will be shared by 4 other members.
I have a ...
1
vote
3answers
179 views
Dangling branch?
It's probably an already asked question, but I just don't know what are the right names to call the issue - so please guide me or answer (yes, I've seen this question but couldn't get too much from ...
1
vote
2answers
519 views
How do I stop pushing to multiple remote branches in git? (aka, How do I untrack remote git branches?)
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 ...
0
votes
3answers
69 views
How to pull branches from remote source
How do I fetch back all the branches for my repository on Git?
I tried the following:
git remote add origin git@github.com:anchetaWern/Zenoir-Online-Classroom.git
git pull ...
2
votes
2answers
258 views
Specify the 'origin/master' part in a git push
If I do a git push, I see 3 branches involved. 1) The local branch I am working on, say 'foo1' 2) the local remote-tracking branch 'origin/foo2' (which always is on the same commit as the remote foo3 ...
0
votes
1answer
144 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)
...
5
votes
2answers
648 views
How to forcefully delete a remote branch in GitHub?
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 the ...
1
vote
2answers
849 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 ...
9
votes
2answers
1k 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 ...
1
vote
2answers
141 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 ...
2
votes
2answers
1k 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
558 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 ...
1
vote
1answer
2k 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 ...
1
vote
2answers
496 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
202 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 ...
0
votes
3answers
352 views
hook to limit push to only one branch at a time
I’m trying to create a hook that blocks pushes to a remote repository if you are trying to push more than once branch.
Here’s the hook:
#!/bin/bash
HG_EXE="/opt/csw/bin/hg"
CHANGESETS=`${HG_EXE} ...
1
vote
1answer
257 views
How to push all the remote branches
I have a GIT repository in which there are 4 local branch and numerous remote branch, I want to push the entire repository to the bare repository (including remote branches). I tried using git push ...
4
votes
2answers
236 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 ...
0
votes
1answer
156 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
...
1
vote
1answer
275 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, ...
5
votes
4answers
556 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 ...
8
votes
3answers
17k 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
...
46
votes
2answers
18k views
Git: which is the default configured remote for branch?
I have a remote bare repository 'hub', I work only in the 'master' branch.
The last sentence of this error message makes me wonder: . How do I find out which is my default configured remote
for ...
7
votes
2answers
6k 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" ...
8
votes
2answers
1k 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 ...



