tldr/pages.tr/common/git-remote.md

29 lines
682 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# git remote
> İzlenen depolar dizisini (uzak bağlantıları) yönet.
> Daha fazla bilgi için: <https://git-scm.com/docs/git-remote>.
- Varolan uzak bağlantıların isim ve URL'leriyle bir listesini göster:
`git remote -v`
- Uzak bağlantı ile ilgili bilgi göster:
`git remote show {{uzak_bağlantı_ismi}}`
- Uzak bağlantı ekle:
`git remote add {{uzak_bağlantı_ismi}} {{uzak_bağlantı_url'si}}`
- Uzak bağlantının URL'sini değiştir:
`git remote set-url {{uzak_bağlantı_ismi}} {{yeni_url}}`
- Uzak bağlantıyı sil:
`git remote remove {{uzak_bağlantı_ismi}}`
- Uzak bağlantıyı yeniden adlandır:
`git remote rename {{eski_isim}} {{yeni_isim}}`