Files
tldr/pages.tr/common/git.md

29 lines
593 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
> Dağıtım sürüö kontrol sistemi.
> Daha fazla bilgi: <https://git-scm.com/>.
- Git sürümünü kontrol et:
`git --version`
- Genel yardım sayfasını görüntüle:
`git --help`
- Bir Git alt komutu (`commit`, `log` gibi) için yardım sayfasını görüntüle:
`git help {{alt_komut}}`
- Bit Git alt komutunu çalıştır:
`git {{alt_komut}}`
- Bit Git alt komutunu belirtilen depoda çalıştır:
`git -C {{örnek/depo}} {{alt_komut}}`
- Bir Git alt komutunu belirtilen biçimlendirmeye uygun olarak çalıştır:
`git -c '{{config.key}}={{değer}}' {{alt_komut}}`