All of lore.kernel.org
 help / color / mirror / Atom feed
* Strange branch merging.
@ 2009-02-12 11:52 Adam Panayis
  2009-02-12 12:27 ` Pieter de Bie
  2009-02-12 13:08 ` Sitaram Chamarty
  0 siblings, 2 replies; 6+ messages in thread
From: Adam Panayis @ 2009-02-12 11:52 UTC (permalink / raw)
  To: git

Hi, I have just started using git and am having  a problem with 2 
branches appearing merged.

I have a local machine, on this I have 2 branches. The master and one 
named blah. My git repository is in the following location: /git/.git/

I have made changes to a file on the blah branch and committed these 
changes.

I checkout the master branch and as expected the changes are no longer 
there. I flip back to blah and I can see my changes. So far so good.

I then, on a remote machine use the pull command, the remote machine 
shows only the master branch as I have not asked it to pull blah. The 
command I use is as follows: git pull -v ssh://user@machine one/git/.git/

Once this is done I double check my branches and it shows I still only 
have the master. Perfect. However, when I check the file I edited on my 
local machine on the blah branch, the changes are there.

Am I fundamentally misunderstanding the correct usage of git? Is this 
result expected?

Thanks

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Strange branch merging.
  2009-02-12 11:52 Strange branch merging Adam Panayis
@ 2009-02-12 12:27 ` Pieter de Bie
  2009-02-12 12:40   ` Adam Panayis
  2009-02-12 13:08 ` Sitaram Chamarty
  1 sibling, 1 reply; 6+ messages in thread
From: Pieter de Bie @ 2009-02-12 12:27 UTC (permalink / raw)
  To: Adam Panayis; +Cc: git


On Feb 12, 2009, at 11:52 AM, Adam Panayis wrote:

> Once this is done I double check my branches and it shows I still  
> only have the master. Perfect. However, when I check the file I  
> edited on my local machine on the blah branch, the changes are there.
>
> Am I fundamentally misunderstanding the correct usage of git? Is  
> this result expected?

Yes, git pull will never change anything on the remote side. You  
should use 'git push' for that. But, you shouldn't push to repository  
with a working directory unless you know what you're doing -- read http://git.or.cz/gitwiki/GitFaq#non-bare 
  for that.

- Pieter

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Strange branch merging.
  2009-02-12 12:27 ` Pieter de Bie
@ 2009-02-12 12:40   ` Adam Panayis
  2009-02-12 12:42     ` Pieter de Bie
  0 siblings, 1 reply; 6+ messages in thread
From: Adam Panayis @ 2009-02-12 12:40 UTC (permalink / raw)
  To: Pieter de Bie; +Cc: git

Pieter, thanks for your advice.

I am never using the push command here.

Box A has branches master and blah.
On Box B I just want to pull branch master.

When I try to do that on box B I get the master branch from box A but I 
get the changes made to branch blah on box A.

I do not understand why, on box B, the master branch is showing changes 
made to the blah branch on box A. (Yet on box A the changes to the blah 
branch are not shown in the master)

Apologies for my babbling.

Adam

Pieter de Bie wrote:
>
> On Feb 12, 2009, at 11:52 AM, Adam Panayis wrote:
>
>> Once this is done I double check my branches and it shows I still 
>> only have the master. Perfect. However, when I check the file I 
>> edited on my local machine on the blah branch, the changes are there.
>>
>> Am I fundamentally misunderstanding the correct usage of git? Is this 
>> result expected?
>
> Yes, git pull will never change anything on the remote side. You 
> should use 'git push' for that. But, you shouldn't push to repository 
> with a working directory unless you know what you're doing -- read 
> http://git.or.cz/gitwiki/GitFaq#non-bare for that.
>
> - Pieter

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Strange branch merging.
  2009-02-12 12:40   ` Adam Panayis
@ 2009-02-12 12:42     ` Pieter de Bie
  2009-02-12 12:59       ` Adam Panayis
  0 siblings, 1 reply; 6+ messages in thread
From: Pieter de Bie @ 2009-02-12 12:42 UTC (permalink / raw)
  To: Adam Panayis; +Cc: git

Hey,

[ Please don't top-post here, it makes following the discussion harder ]

On Feb 12, 2009, at 12:40 PM, Adam Panayis wrote:
> When I try to do that on box B I get the master branch from box A  
> but I get the changes made to branch blah on box A.
>
> I do not understand why, on box B, the master branch is showing  
> changes made to the blah branch on box A. (Yet on box A the changes  
> to the blah branch are not shown in the master)

You probably pulled in the 'blah' branch rather than the 'master'  
branch because that was
the branch that is checked out on box A. You can verify this by  
looking at 'git log' and
see that the commit on the blah branch is also there. To pull the  
master branch, specify
it explicitly, like this:

	git pull boxA:path/to/repo master

- Pieter

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Strange branch merging.
  2009-02-12 12:42     ` Pieter de Bie
@ 2009-02-12 12:59       ` Adam Panayis
  0 siblings, 0 replies; 6+ messages in thread
From: Adam Panayis @ 2009-02-12 12:59 UTC (permalink / raw)
  To: Pieter de Bie; +Cc: git

Pieter de Bie wrote:
> Hey,
>
> [ Please don't top-post here, it makes following the discussion harder ]
>
> On Feb 12, 2009, at 12:40 PM, Adam Panayis wrote:
>> When I try to do that on box B I get the master branch from box A but 
>> I get the changes made to branch blah on box A.
>>
>> I do not understand why, on box B, the master branch is showing 
>> changes made to the blah branch on box A. (Yet on box A the changes 
>> to the blah branch are not shown in the master)
>
> You probably pulled in the 'blah' branch rather than the 'master' 
> branch because that was
> the branch that is checked out on box A. You can verify this by 
> looking at 'git log' and
> see that the commit on the blah branch is also there. To pull the 
> master branch, specify
> it explicitly, like this:
>
>     git pull boxA:path/to/repo master
>
> - Pieter
Pieter, thank you very much. Looks like that is indeed the mistake I was 
making.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Strange branch merging.
  2009-02-12 11:52 Strange branch merging Adam Panayis
  2009-02-12 12:27 ` Pieter de Bie
@ 2009-02-12 13:08 ` Sitaram Chamarty
  1 sibling, 0 replies; 6+ messages in thread
From: Sitaram Chamarty @ 2009-02-12 13:08 UTC (permalink / raw)
  To: git

On 2009-02-12, Adam Panayis <adam@movency.com> wrote:
> I have a local machine, on this I have 2 branches. The master and one 
> named blah. My git repository is in the following location: /git/.git/
>
> I have made changes to a file on the blah branch and committed these 
> changes.
>
> I checkout the master branch and as expected the changes are no longer 
> there. I flip back to blah and I can see my changes. So far so good.
>
> I then, on a remote machine use the pull command, the remote machine 
> shows only the master branch as I have not asked it to pull blah. The 
> command I use is as follows: git pull -v ssh://user@machine one/git/.git/
>
> Once this is done I double check my branches and it shows I still only 
> have the master. Perfect. However, when I check the file I edited on my 
> local machine on the blah branch, the changes are there.

On the remote machine, your current branch was 'master'.
When you did a 'git pull', whatever you did would affect
this branch.  Meanwhile, the currently checked-out branch on
the other side was 'blah', which is what came in.

What you need to do is add the word 'master' to the 'git
pull...' command you used.  This will ensure that,
regardless of what the currently checkedout branch on the
sending side is, you will get the master branch.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2009-02-12 13:09 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-02-12 11:52 Strange branch merging Adam Panayis
2009-02-12 12:27 ` Pieter de Bie
2009-02-12 12:40   ` Adam Panayis
2009-02-12 12:42     ` Pieter de Bie
2009-02-12 12:59       ` Adam Panayis
2009-02-12 13:08 ` Sitaram Chamarty

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.