Files
tldr/pages.tr/common/git-subtree.md
Vitor Henrique 61405c6e0e pages*: fix small typos (#11850)
* pages*: fix small typos

* pages/*: make help and version commands consistent

* pages/*: follow "path/to/file" pattern

* nop: generic display help wording
2023-12-27 12:11:30 +05:30

25 lines
861 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# git subtree
> Proje bağımlılıklarını alt proje olarak yönetmeye yarayan bir araç.
> Daha fazla bilgi için: <https://manpages.debian.org/latest/git-man/git-subtree.1.html>.
- Bir Git deposunu alt ağaç olarak ekle:
`git subtree add --prefix={{dizin/konumu}} --squash {{depo_url'si}} {{dal_ismi}}`
- Alt ağaç deposunu son commit'ine güncelle:
`git subtree pull --prefix={{dizin/konumu}} {{depo_url'si}} {{dal_ismi}}`
- Son alt ağaca kadar olan değişiklikleri alt ağaca commit'le:
`git subtree merge --prefix={{dizin/konumu}} --squash {{depo_url'si}} {{dal_ismi}}`
- Commit'leri bir alt ağaç deposuna yolla:
`git subtree push --prefix={{dizin/konumu}} {{depo_url'si}} {{dal_ismi}}`
- Bir alt ağacın geçmişinden yeni bir proje geçmişi dışa aktar:
`git subtree split --prefix={{dizin/konumu}} {{depo_url'si}} -b {{dal_ismi}}`