Why not do 'git branch temp v2.6.22-rc7' to begin with? Or even better:
git checkout -b temp v2.6.22-rc7.
But in any case, you should know that there is no floating tag in git, and
therefore, by storing it in the "branch" temp, you doom that branch to
not be able to be committed to.
What you should have done, of course, is
$ git checkout temp
$ git merge v2.6.22-rc7
No. It is perfectly sane to fetch a tag, and to store it.
Maybe. Dunno.
Ciao,
Dscho
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html