Hi Werner,

[snip]
>> * You can get the stable-1.0 branch from git:
>>
>>       git fetch
>>       git rebase origin
>>       git checkout stable-1.0
>
>The third line didn't work as stable-1.0 wasn't in my .git/refs/heads/ 
>directory. I needed to copy it from .git/refs/remotes/origin/


Yes, my bad.  The commands to track a new branch are:

        git fetch
        git checkout --track -b stable-1.0 origin/stable-1.0
        
To update this branch:
        
        git fetch
        git checkout stable-1.0
        git rebase remotes/origin/stable-1.0

                                                                -Ales



_______________________________________________
geda-dev mailing list
[email protected]
http://www.seul.org/cgi-bin/mailman/listinfo/geda-dev

Reply via email to