Files
tldr/pages.tr/common/git-restore.md
Tan A f9b662115a 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
2021-12-29 15:28:58 +03:00

34 lines
925 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 restore
> Çalışan ağaç dosyalarını onar. Git sürümü 2.23+ olmalıdır.
> `git checkout` ve `git reset` komutlarına da ayrıca bakılması tavsiye edilir.
> Daha fazla bilgi için: <https://git-scm.com/docs/git-restore>.
- Sahnelenmemiş bir dosyayı mevcut commit'in sürümüne kavuştur:
`git restore {{dosya/konumu}}`
- Sahnelenmemiş bir dosyayı belirtilen commit'in sürümüne kavuştur:
`git restore --source {{commit}} {{dosya/konumu}}`
- İzlenen dosyalardaki sahnelenmemiş tüm değişiklikleri iptal et:
`git restore :/`
- Bir dosyayı sahnelenmemiş hale getir:
`git restore --staged {{dosya/konumu}}`
- Tüm dosyaları sahnelenmemiş hale getir:
`git restore --staged :/`
- Dosyalara yapılan sahnelenmiş veya sahnelenmemiş tüm değişiklikleri iptal et:
`git restore --worktree --staged :/`
- Onarılacak dosya parçalarını etkileşimli olarak seç:
`git restore --patch`