Git Spezifisches Tag klonen
Stewart Nguyen
6 Februar 2022
In diesem Artikel erfahren Sie, wie Sie ein bestimmtes Tag aus einem Remote-Repository klonen.
Dazu verwenden wir den Befehl git clone -b <tag> --single-branch <remote_repository>
.
- Die Option
-b
akzeptiert ein Tag oder einen Zweig, den Sie klonen möchten. - Die Option
--single-branch
gibt an, dass nur das von der Option-b
gelieferte Tag auf lokal geklont wird. Alle anderen entfernten Branches/Tags werden ignoriert.
Git erstellt nach dem Klonen keinen neuen Branch für uns; Tatsächlich bezieht es sich nur auf den SHA des Tags.
Es liegt in unserer Verantwortung, einen neuen Zweig aus dem SHA des Tags mit git switch -c <new-branch-name>
zu erstellen.
$ git clone -b v1.0.0 --single-branch git@github.com:stwarts/git-demo.git && cd git-demo
Cloning into 'git-demo'...
remote: Enumerating objects: 13, done.
remote: Counting objects: 100% (13/13), done.
remote: Compressing objects: 100% (8/8), done.
remote: Total 13 (delta 1), reused 8 (delta 0), pack-reused 0
Receiving objects: 100% (13/13), done.
Resolving deltas: 100% (1/1), done.
Note: switching to '9265e3bd97863fde0a13084f04163ceceff9a9d0'.
You are in a `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 switching back to a branch.
If you want to create a new branch to retain commits you have created, you may
do so (now or later) by using -c with the switch command. Example:
git switch -c <new-branch-name>
Or undo this operation with:
git switch -
$ git switch -c branch-off-from-tag-v1.0.0
$ git branch
* branch-off-from-tag-v1.0.0
Verwandter Artikel - Git Clone
- Klonen Sie ein Git-Repository mit einer bestimmten Revision
- Unterschied zwischen Forken und Klonen auf GitHub
- Unterschied zwischen Git Checkout und Git Clone
- Klonen alle Branches in Git
- Klonen ein Remote-Repository mit Submodulen in Git
- Klonen ein Repo oder einen Zweig mit SSH-Schlüssel in Git