git*: add Turkish translation (#7581)

* translate git.md to tr

* translate git-add.md to tr

* translate git-am.md to tr

* translate git-annex.md to tr

* translate git-annotate.md to tr

* translate git-archive.md to tr

* translate git-bisect.md to tr

* translate git-blame.md to tr

* translate git-branch.md to tr

* translate git-bugreport.md to tr

* translate git-bundle.md to tr

* translate git-cat-file.md to tr

* translate git-check-attr.md to tr

* translate git-check-ignore.md to tr

* translate git-check-mailmap.md to tr

* translate (no I will not write the filename anymore as its goddamn tiring)

* translate

* translate

* translate

* translate

* translate

* translate

* translate

* translate

* translate

* translate

* translate

* translate

* translate

* translate

* translate

* translate

* translate

* translate

* translate

* translate

* translate

* translate git-help

* translate git-ignore

* translate git-imerge

* translate git-init

* translate git-instaweb

* translate and fix git-instaweb

* translate and fix git-lfs

* translate and fix git-log

* translate

* translate

* translate

* fix bad translation

* git-merge

* git-mergetool

* gitmoji

* git-mv

* git-notes

* git-pr

* git-prune

* git-pull

* git-push

* git-rebase

* git-reflog

* git-remote

* git-repack

* git-replace

* git-request-pull

* git-reset

* git-restore

* git-rev-list

* git-rev-parse

* git-rm

* git-send-email

* git-shortlog.md

* git-show.md

* git-show-ref.md

* git-sizer.md

* gitsome.md

* git-stage.md

* edit git-add.md and git-stage.md

* git-stash

* git-status

* git-stripspace

* git-submodule

* git-subtree

* git-svn

* git-tag

* git-update-index

* git-update-ref

* git-var

* git-worktree

* fix errors

* git-apply

* edit git-check-ref-format

* git-revert

* git-show-branch
This commit is contained in:
Tan A
2021-12-29 15:28:58 +03:00
committed by GitHub
parent d7375910c7
commit f9b662115a
90 changed files with 2078 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
# git notes
> Nesne notları ekle veya incele.
> Daha fazla bilgi için: <https://git-scm.com/docs/git-notes>.
- Tüm notları ve bağlı oldukları nesneleri sırala:
`git notes list`
- Belirtilen nesneye bağlanan tüm notları sırala (varsayılan HEAD'dedir):
`git notes list [{{nesne}}]`
- Belirtilen nesneye bağlanan tüm notları göster (varsayılan HEAD'dedir):
`git notes show [{{nesne}}]`
- Belirtilen nesneye bir not ekle (varsayılan metin editörü açılır):
`git notes append {{nesne}}`
- Mesajı belirterek belirtilen nesneye bir not ekle:
`git notes append --message="{{messaj_yazısı}}"`
- Varolan bir notu düzenle (varsayılan HEAD'dedir):
`git notes edit [{{nesne}}]`
- Bir notu bir nesneden öbürüne kopyala:
`git notes copy {{kaynak_nesne}} {{hedef_nesne}}`
- Belirtilen nesneye eklenen tüm notları sil:
`git notes remove {{nesne}}`