Files
tldr/pages.tr/common/git-subtree.md
K.B.Dharun Krishna 5c26174aa9 pages/*: update links and more info link script (#11390)
* pages/*: update links and more info link script

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* cleanup: reformat code

* ax-webapp: fix link

* curl: fix false positive

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

---------

Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2023-11-06 23:14:12 +05:30

25 lines
864 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}}`