Sebastian Rose <sebastian_r...@gmx.de> writes:

> * One git question:
>
> When I pulled, I got the message, that there is a new branch. But that
> branch did not show up in the list `git branch' gives me.

use git branch -r (or git branch -a) to list remote (or all branch)

> Then I did:
> sh$ git checkout origin/remove-compatibility-code

better to create a locale branch tracking the remote one with:
git checkout -b remove-compatibility-code origin/remove-compatibility-code 

Then git pull will work as expected.

[...]
> While this is all fine, and I'm on `remove-compatibility-code' now: will
> that branch be updated when I pull the next time?

Not with you described config.
-- 
Rémi Vanicat



_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to