From f5a288ab3ae92590b39e442b7e5a92a1490c0de2 Mon Sep 17 00:00:00 2001 From: Nelson Figueroa <30811275+nelsonfigueroa@users.noreply.github.com> Date: Sat, 16 Aug 2025 10:36:51 -0700 Subject: [PATCH] git-push: refresh pages (#17690) --- pages.de/common/git-push.md | 4 ++-- pages.es/common/git-push.md | 4 ++-- pages.fr/common/git-push.md | 4 ++-- pages.id/common/git-push.md | 4 ++-- pages.it/common/git-push.md | 4 ++-- pages.ko/common/git-push.md | 4 ++-- pages.pt_BR/common/git-push.md | 4 ++-- pages.tr/common/git-push.md | 4 ++-- pages.uk/common/git-push.md | 4 ++-- 9 files changed, 18 insertions(+), 18 deletions(-) diff --git a/pages.de/common/git-push.md b/pages.de/common/git-push.md index bd1d771c42..4a604bc6a1 100644 --- a/pages.de/common/git-push.md +++ b/pages.de/common/git-push.md @@ -13,7 +13,7 @@ - Lade den aktuellen Branch in ein entferntes Repository mit Angabe des Namens des entfernten Branches hoch: -`git push -u {{remote_name}} {{remote_branch}}` +`git push {{[-u|--set-upstream]}} {{remote_name}} {{remote_branch}}` - Lade Änderungen eines bestimmten lokalen Branches zu einem bestimmten entfernten Branch hoch: @@ -25,7 +25,7 @@ - Lösche einen Branch in einem entfernten Repository: -`git push {{remote_name}} --delete {{remote_branch}}` +`git push {{remote_name}} {{[-d|--delete]}} {{remote_branch}}` - Entferne alle remote Branches, welche kein lokales Gegenstück besitzen: diff --git a/pages.es/common/git-push.md b/pages.es/common/git-push.md index 85644a16d4..6c9a1bfb79 100644 --- a/pages.es/common/git-push.md +++ b/pages.es/common/git-push.md @@ -13,7 +13,7 @@ - Publica la rama actual en el repositorio remoto y establece el nombre remoto de la rama: -`git push -u {{nombre_remoto}} {{rama_remota}}` +`git push {{[-u|--set-upstream]}} {{nombre_remoto}} {{rama_remota}}` - Envía los cambios locales de una rama específica a una rama específica en el remoto: @@ -25,7 +25,7 @@ - Elimina una rama en el repositorio remoto: -`git push {{nombre_remoto}} --delete {{rama_remota}}` +`git push {{nombre_remoto}} {{[-d|--delete]}} {{rama_remota}}` - Elimina las ramas remotas que no están en el repositorio local: diff --git a/pages.fr/common/git-push.md b/pages.fr/common/git-push.md index f6bdbf913f..8a3ff180fb 100644 --- a/pages.fr/common/git-push.md +++ b/pages.fr/common/git-push.md @@ -13,7 +13,7 @@ - Publie la branche courante vers un dépôt distant, crée le nom de la branche distante : -`git push {{nom_distant}} -u {{branche_distante}}` +`git push {{nom_distant}} {{[-u|--set-upstream]}} {{branche_distante}}` - Envoi les changements locaux sur toutes les branches locales vers leur contrepartie sur le dépôt distant : @@ -21,7 +21,7 @@ - Supprime une branche dans un dépôt distant : -`git push {{nom_distant}} --delete {{branche_distante}}` +`git push {{nom_distant}} {{[-d|--delete]}} {{branche_distante}}` - Supprime les branches distantes qui n'ont pas de contrepartie locale : diff --git a/pages.id/common/git-push.md b/pages.id/common/git-push.md index d6c6297c7a..3405145329 100644 --- a/pages.id/common/git-push.md +++ b/pages.id/common/git-push.md @@ -13,7 +13,7 @@ - Kirim perubahan dari cabang lokal yang ditentukan menuju cabang sepadan pada repositori tujuan, dan simpan remote sebagai target operasi dorong (push) dan tarik (pull) bagi cabang lokal tersebut: -`git push -u {{nama_remote}} {{cabang_lokal}}` +`git push {{[-u|--set-upstream]}} {{nama_remote}} {{cabang_lokal}}` - Kirim perubahan dari suatu cabang lokal menuju suatu cabang remote secara spesifik: @@ -25,7 +25,7 @@ - Hapus suatu cabang dalam suatu repositori remote: -`git push {{nama_remote}} --delete {{cabang_remote}}` +`git push {{nama_remote}} {{[-d|--delete]}} {{cabang_remote}}` - Hapus cabang-cabang remote yang tidak memiliki padanan pada repositori lokal: diff --git a/pages.it/common/git-push.md b/pages.it/common/git-push.md index 663afefa46..cf2bafa3c2 100644 --- a/pages.it/common/git-push.md +++ b/pages.it/common/git-push.md @@ -13,7 +13,7 @@ - Invia le modifiche fatte in uno specifico ramo locale al corrispondente ramo remoto ed imposta il ramo remoto come destinazione di default per i push/pull del ramo locale: -`git push -u {{nome_repository_remoto}} {{nome_ramo}}` +`git push {{[-u|--set-upstream]}} {{nome_repository_remoto}} {{nome_ramo}}` - Invia le modifiche fatte in uno specifico ramo locale ad uno specifico ramo remoto: @@ -25,7 +25,7 @@ - Cancella un ramo di un repository remoto: -`git push {{nome_repository_remoto}} --delete {{nome_ramo_remoto}}` +`git push {{nome_repository_remoto}} {{[-d|--delete]}} {{nome_ramo_remoto}}` - Cancella i rami remoti che non hanno un ramo locale corrispondente: diff --git a/pages.ko/common/git-push.md b/pages.ko/common/git-push.md index 4600c24225..94060d3f30 100644 --- a/pages.ko/common/git-push.md +++ b/pages.ko/common/git-push.md @@ -13,7 +13,7 @@ - 특정 로컬 브랜치에서 해당 원격 상대 브랜치로 변경 사항을 보내고, 원격 브랜치를 로컬 브랜치의 기본 푸시/풀 대상으로 설정: -`git push -u {{원격_이름}} {{로컬_브랜치}}` +`git push {{[-u|--set-upstream]}} {{원격_이름}} {{로컬_브랜치}}` - 특정 로컬 브랜치에서 특정 원격 브랜치로 변경 사항 보내기: @@ -25,7 +25,7 @@ - 원격 저장소에서 브랜치 삭제: -`git push {{원격_이름}} --delete {{원격_브랜치}}` +`git push {{원격_이름}} {{[-d|--delete]}} {{원격_브랜치}}` - 로컬과 대응되는 원격 브랜치가 없는 원격 브랜치 제거: diff --git a/pages.pt_BR/common/git-push.md b/pages.pt_BR/common/git-push.md index 1b4766941a..05f827f766 100644 --- a/pages.pt_BR/common/git-push.md +++ b/pages.pt_BR/common/git-push.md @@ -13,7 +13,7 @@ - Envia alterações de uma branch local específica para sua contraparte remota, e define a branch remota como o destino push/pull padrão da branch local: -`git push -u {{nome_remoto}} {{branch_local}}` +`git push {{[-u|--set-upstream]}} {{nome_remoto}} {{branch_local}}` - Envia alterações de uma branch local específica para uma branch remota específica: @@ -25,7 +25,7 @@ - Exclui uma branch em um repositório remoto: -`git push {{nome_remoto}} --delete {{branch_remota}}` +`git push {{nome_remoto}} {{[-d|--delete]}} {{branch_remota}}` - Remove branches remotas que não tenham uma contraparte local: diff --git a/pages.tr/common/git-push.md b/pages.tr/common/git-push.md index b371266f32..8ec367a9a9 100644 --- a/pages.tr/common/git-push.md +++ b/pages.tr/common/git-push.md @@ -13,7 +13,7 @@ - Mevcut dalı bir uzak dal ismi ayarlayarak uzak depoda yayınla: -`git push {{uzak_bağlantı}} -u {{uzak_dal}}` +`git push {{uzak_bağlantı}} {{[-u|--set-upstream]}} {{uzak_dal}}` - Yerel dallardaki tüm değişiklikleri onların belirtilen uzak depodaki uzak eşlerine gönder: @@ -21,7 +21,7 @@ - Uzak depodaki bir dalı sil: -`git push {{uzak_bağlantı}} --delete {{uzak_dal}}` +`git push {{uzak_bağlantı}} {{[-d|--delete]}} {{uzak_dal}}` - Yerel eşi olmayan uzak dalları sil: diff --git a/pages.uk/common/git-push.md b/pages.uk/common/git-push.md index f7f9dd871c..de01209a16 100644 --- a/pages.uk/common/git-push.md +++ b/pages.uk/common/git-push.md @@ -13,7 +13,7 @@ - Надіслати зміни із вказаної локальної гілки до її віддаленого відповідника та встановити цю віддалену гілку як типову для дій надсилання і стягування: -`git push -u {{назва_сховища}} {{локальна_гілка}}` +`git push {{[-u|--set-upstream]}} {{назва_сховища}} {{локальна_гілка}}` - Надіслати зміни із вказаної локальної гілки до вказаної віддаленої: @@ -25,7 +25,7 @@ - Видалити гілку у віддаленому репозиторії: -`git push {{назва_сховища}} --delete {{віддалена_гілка}}` +`git push {{назва_сховища}} {{[-d|--delete]}} {{віддалена_гілка}}` - Видалити віддалену гілку, що не містить локального відповідника: