mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
587 B
587 B
git commit
Depoya dosya commit'le. Daha fazla bilgi için: https://git-scm.com/docs/git-commit.
- Sahnelenmiş dosyaları belirtilen mesaj ile commit'le:
git commit {{[-m|--message]}} {{mesaj}}
- Değişiklikleri otomatik olarak sahnele ve mesaj ile commit'le:
git commit {{[-a|--all]}} {{[-m|--message]}} {{mesaj}}
- Değerini değiştirecek şekilde son commit'i yeni sahnelenmiş değişiklikleri ekleyerek güncelle:
git commit --amend
- Yalnızca belirtilmiş (halihazırda sahnelenmiş) dosyaları commit'le:
git commit {{örnek/dosya1 örnek/dosya2 ...}}