On 2014-12-26, Volker Braun <
vbrau...@gmail.com> wrote:
> ------=_Part_5531_1685050387.1419616059330
> Content-Type: multipart/alternative;
> boundary="----=_Part_5532_1775001320.1419616059330"
>
> ------=_Part_5532_1775001320.1419616059330
> Content-Type: text/plain; charset=UTF-8
but then what does the following mean:
$ git fetch trac u/dimpase/16929
remote: Counting objects: 21, done.
remote: Compressing objects: 100% (12/12), done.
remote: Total 14 (delta 9), reused 7 (delta 2)
Unpacking objects: 100% (14/14), done.
From git://
trac.sagemath.org/sage
* branch u/dimpase/16929 -> FETCH_HEAD
* [new branch] u/dimpase/16929 -> trac/u/dimpase/16929
$ git remote -v
origin
https://github.com/sagemath/sage.git (fetch)
origin
https://github.com/sagemath/sage.git (push)
trac git://
trac.sagemath.org/sage.git (fetch)
trac g...@trac.sagemath.org:sage.git (push)
What does this [new branch] mean?
Note that now I can e.g. do
$ git checkout trac/u/dimpase/16929
Note: checking out 'trac/u/dimpase/16929'.
You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in
this
state without impacting any branches by performing another checkout.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again.
Example:
git checkout -b new_branch_name
HEAD is now at a576d91... Ported Ingo's code to Sage 6.5.beta1
That is to say, 'trac/u/dimpase/16929' really got created.
Dima