2021-12-29 12:28:58 +00:00
|
|
|
|
# git branch
|
|
|
|
|
|
|
|
|
|
> Dallar ile çalışmak için kullanılan ana Git komutu.
|
2022-01-29 20:17:39 +00:00
|
|
|
|
> Daha fazla bilgi: <https://git-scm.com/docs/git-branch>.
|
2021-12-29 12:28:58 +00:00
|
|
|
|
|
|
|
|
|
- Yerel dalları göster. Mevctu dal `*` ile vurgulanır:
|
|
|
|
|
|
|
|
|
|
`git branch`
|
|
|
|
|
|
|
|
|
|
- Tüm dalları (yerel ve uzak bağlantıda olan) göster:
|
|
|
|
|
|
|
|
|
|
`git branch -a`
|
|
|
|
|
|
|
|
|
|
- Mevcut dalın ismini göster:
|
|
|
|
|
|
|
|
|
|
`git branch --show-current`
|
|
|
|
|
|
|
|
|
|
- Mevcut commit'e dayanarak yeni bir dal oluştur:
|
|
|
|
|
|
|
|
|
|
`git branch {{dal_ismi}}`
|
|
|
|
|
|
|
|
|
|
- Belirtilen commit'e dayanarak yeni bir dal oluştur:
|
|
|
|
|
|
|
|
|
|
`git branch {{dal_ismi}} {{commit_değeri}}`
|
|
|
|
|
|
|
|
|
|
- Bir dalı yeniden adlandır:
|
|
|
|
|
|
|
|
|
|
`git branch -m {{eski_dal_ismi}} {{yeni_dal_ismi}}`
|
|
|
|
|
|
|
|
|
|
- Yerel bir dalı sil:
|
|
|
|
|
|
|
|
|
|
`git branch -d {{dal_ismi}}`
|
|
|
|
|
|
|
|
|
|
- Uzaktaki bir dalı sil:
|
|
|
|
|
|
|
|
|
|
`git push {{uzak_bağlantı}} --delete {{uzak_dal_ismi}}`
|