1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.tr/common/git-commit.md
Managor fe4c26ba2e
pages*/common/*: add option placeholders to translations part 2 (#15901)
Co-authored-by: Darío Hereñú <magallania@gmail.com>
2025-03-14 12:48:28 +05:30

20 lines
587 B
Markdown

# 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 ...}}`