Tagged Questions

6
votes
3answers
92 views

[git] ‘git pull origin mybranch’ leaves local mybranch N commits ahead of origin. Why?

I just observed something odd about git pull, which I don't understand. On Friday, I worked on a local branch. let's call it mybranch. Before leaving the office I pushed it to ori …
1
vote
2answers
126 views

detail change after git pull

Hi, After git pull, its output gives a summary on the change amount. If I want to see the detail change of each file or some file, how can I? Thanks and regards! Update: Thanks …
6
votes
5answers
852 views

[Git]How can I make my local repository available for git-pull?

I have a working copy repository that I've been working in no problem; the origin for this repository is on GitHub. I'd like to make my working copy repository available as the …
3
votes
3answers
302 views

Push and Pull Branches In Git

I have a local repository I'm working on and it's remote is hosted on GitHub. I recently created a branch and started working on it making several commits and now wish to push the …
1
vote
3answers
259 views

Unable to `git submodule foreach git pull`

This question is based on this thread. My .gitmodules is at my Home [submodule "bin"] path = bin url = git://github.com/masi/bin.git My folder -structure …
2
votes
2answers
426 views

Git merge flattening

If I am working in multiple branches on a single feature, I use git pull branch1 branch2 branch3 to pull all the changes into my master branch. However, all the commit logs of each …