git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* How to checkout a branch (and not a tag)
@ 2021-04-11 23:04 Jeffrey Walton
  2021-04-11 23:22 ` Junio C Hamano
  0 siblings, 1 reply; 3+ messages in thread
From: Jeffrey Walton @ 2021-04-11 23:04 UTC (permalink / raw)
  To: Git List

I'm trying to checkout a branch called REL1_35 from
https://github.com/wikimedia/mediawiki-skins-Cosmos. The repo also has
a tag called REL1_35.

When I perform the following I apparently get the tag (with old files)
and not the branch (with updated files):

    wiki_rel=REL1_53
    ...
    git fetch origin && git reset --hard "origin/${wiki_rel}" && \
        git checkout -f "${wiki_rel}" && git pull && git clean -xdf

I found https://groups.google.com/g/git-users/c/FfzGmqj6sNQ, but I am
not following it. My .git/config looks like it is using the proper
reference:

# cat skins/Cosmos/.git/config
[core]
        repositoryformatversion = 0
        filemode = true
        bare = false
        logallrefupdates = true
[remote "origin"]
        url = https://github.com/Universal-Omega/MediaWiki-Cosmos-skin.git
        fetch = +refs/heads/*:refs/remotes/origin/*
[branch "REL1_35"]
        remote = origin
        merge = refs/heads/REL1_35

How do I checkout the branch (and not a tag)?

Thanks in advance.

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

end of thread, other threads:[~2021-04-11 23:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-11 23:04 How to checkout a branch (and not a tag) Jeffrey Walton
2021-04-11 23:22 ` Junio C Hamano
2021-04-11 23:29   ` Jeffrey Walton

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).