2020-10-05 19:41:57 +01:00
|
|
|
# git branch
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
> Verwalte und Arbeite mit Git Branches.
|
2021-04-24 12:09:56 +01:00
|
|
|
> Weitere Informationen: <https://git-scm.com/docs/git-branch>.
|
2020-10-05 19:41:57 +01:00
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Liste alle lokalen Branches auf. Der momentan aktive (ausgecheckte) Branch wird mit `*` markiert:
|
2020-10-05 19:41:57 +01:00
|
|
|
|
|
|
|
`git branch`
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Liste alle Branches auf (Lokal und Remote):
|
2020-10-05 19:41:57 +01:00
|
|
|
|
|
|
|
`git branch -a`
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Zeige den Namen des aktuellen Branches:
|
2020-10-05 19:41:57 +01:00
|
|
|
|
|
|
|
`git branch --show-current`
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Erstelle einen neuen Branch auf Basis des letzten Commits:
|
2020-10-05 19:41:57 +01:00
|
|
|
|
|
|
|
`git branch {{branch_name}}`
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Erstelle einen neuen Branch auf Basis eines bestimmten Commits:
|
2020-10-05 19:41:57 +01:00
|
|
|
|
|
|
|
`git branch {{branch_name}} {{commit_hash}}`
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Benenne einen Branches um (der Branch muss nicht ausgecheckt sein):
|
2020-10-05 19:41:57 +01:00
|
|
|
|
|
|
|
`git branch -m {{alter_branch_name}} {{neuer_branch_name}}`
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Lösche einen lokalen Branch (der Branch muss nicht ausgecheckt sein):
|
2020-10-05 19:41:57 +01:00
|
|
|
|
|
|
|
`git branch -d {{branch_name}}`
|
|
|
|
|
2021-03-25 16:42:04 +00:00
|
|
|
- Lösche einen remote-Branch:
|
2020-10-05 19:41:57 +01:00
|
|
|
|
|
|
|
`git push {{remote_name}} --delete {{remote_branch_name}}`
|