Skip to content

Commit f5a288a

Browse files
git-push: refresh pages (#17690)
1 parent c42c48a commit f5a288a

File tree

9 files changed

+18
-18
lines changed

9 files changed

+18
-18
lines changed

pages.de/common/git-push.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
- Lade den aktuellen Branch in ein entferntes Repository mit Angabe des Namens des entfernten Branches hoch:
1515

16-
`git push -u {{remote_name}} {{remote_branch}}`
16+
`git push {{[-u|--set-upstream]}} {{remote_name}} {{remote_branch}}`
1717

1818
- Lade Änderungen eines bestimmten lokalen Branches zu einem bestimmten entfernten Branch hoch:
1919

@@ -25,7 +25,7 @@
2525

2626
- Lösche einen Branch in einem entfernten Repository:
2727

28-
`git push {{remote_name}} --delete {{remote_branch}}`
28+
`git push {{remote_name}} {{[-d|--delete]}} {{remote_branch}}`
2929

3030
- Entferne alle remote Branches, welche kein lokales Gegenstück besitzen:
3131

pages.es/common/git-push.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
- Publica la rama actual en el repositorio remoto y establece el nombre remoto de la rama:
1515

16-
`git push -u {{nombre_remoto}} {{rama_remota}}`
16+
`git push {{[-u|--set-upstream]}} {{nombre_remoto}} {{rama_remota}}`
1717

1818
- Envía los cambios locales de una rama específica a una rama específica en el remoto:
1919

@@ -25,7 +25,7 @@
2525

2626
- Elimina una rama en el repositorio remoto:
2727

28-
`git push {{nombre_remoto}} --delete {{rama_remota}}`
28+
`git push {{nombre_remoto}} {{[-d|--delete]}} {{rama_remota}}`
2929

3030
- Elimina las ramas remotas que no están en el repositorio local:
3131

pages.fr/common/git-push.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313

1414
- Publie la branche courante vers un dépôt distant, crée le nom de la branche distante :
1515

16-
`git push {{nom_distant}} -u {{branche_distante}}`
16+
`git push {{nom_distant}} {{[-u|--set-upstream]}} {{branche_distante}}`
1717

1818
- Envoi les changements locaux sur toutes les branches locales vers leur contrepartie sur le dépôt distant :
1919

2020
`git push --all {{nom_distant}}`
2121

2222
- Supprime une branche dans un dépôt distant :
2323

24-
`git push {{nom_distant}} --delete {{branche_distante}}`
24+
`git push {{nom_distant}} {{[-d|--delete]}} {{branche_distante}}`
2525

2626
- Supprime les branches distantes qui n'ont pas de contrepartie locale :
2727

pages.id/common/git-push.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
- 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:
1515

16-
`git push -u {{nama_remote}} {{cabang_lokal}}`
16+
`git push {{[-u|--set-upstream]}} {{nama_remote}} {{cabang_lokal}}`
1717

1818
- Kirim perubahan dari suatu cabang lokal menuju suatu cabang remote secara spesifik:
1919

@@ -25,7 +25,7 @@
2525

2626
- Hapus suatu cabang dalam suatu repositori remote:
2727

28-
`git push {{nama_remote}} --delete {{cabang_remote}}`
28+
`git push {{nama_remote}} {{[-d|--delete]}} {{cabang_remote}}`
2929

3030
- Hapus cabang-cabang remote yang tidak memiliki padanan pada repositori lokal:
3131

pages.it/common/git-push.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
- 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:
1515

16-
`git push -u {{nome_repository_remoto}} {{nome_ramo}}`
16+
`git push {{[-u|--set-upstream]}} {{nome_repository_remoto}} {{nome_ramo}}`
1717

1818
- Invia le modifiche fatte in uno specifico ramo locale ad uno specifico ramo remoto:
1919

@@ -25,7 +25,7 @@
2525

2626
- Cancella un ramo di un repository remoto:
2727

28-
`git push {{nome_repository_remoto}} --delete {{nome_ramo_remoto}}`
28+
`git push {{nome_repository_remoto}} {{[-d|--delete]}} {{nome_ramo_remoto}}`
2929

3030
- Cancella i rami remoti che non hanno un ramo locale corrispondente:
3131

pages.ko/common/git-push.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
- 특정 로컬 브랜치에서 해당 원격 상대 브랜치로 변경 사항을 보내고, 원격 브랜치를 로컬 브랜치의 기본 푸시/풀 대상으로 설정:
1515

16-
`git push -u {{원격_이름}} {{로컬_브랜치}}`
16+
`git push {{[-u|--set-upstream]}} {{원격_이름}} {{로컬_브랜치}}`
1717

1818
- 특정 로컬 브랜치에서 특정 원격 브랜치로 변경 사항 보내기:
1919

@@ -25,7 +25,7 @@
2525

2626
- 원격 저장소에서 브랜치 삭제:
2727

28-
`git push {{원격_이름}} --delete {{원격_브랜치}}`
28+
`git push {{원격_이름}} {{[-d|--delete]}} {{원격_브랜치}}`
2929

3030
- 로컬과 대응되는 원격 브랜치가 없는 원격 브랜치 제거:
3131

pages.pt_BR/common/git-push.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
- 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:
1515

16-
`git push -u {{nome_remoto}} {{branch_local}}`
16+
`git push {{[-u|--set-upstream]}} {{nome_remoto}} {{branch_local}}`
1717

1818
- Envia alterações de uma branch local específica para uma branch remota específica:
1919

@@ -25,7 +25,7 @@
2525

2626
- Exclui uma branch em um repositório remoto:
2727

28-
`git push {{nome_remoto}} --delete {{branch_remota}}`
28+
`git push {{nome_remoto}} {{[-d|--delete]}} {{branch_remota}}`
2929

3030
- Remove branches remotas que não tenham uma contraparte local:
3131

pages.tr/common/git-push.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313

1414
- Mevcut dalı bir uzak dal ismi ayarlayarak uzak depoda yayınla:
1515

16-
`git push {{uzak_bağlantı}} -u {{uzak_dal}}`
16+
`git push {{uzak_bağlantı}} {{[-u|--set-upstream]}} {{uzak_dal}}`
1717

1818
- Yerel dallardaki tüm değişiklikleri onların belirtilen uzak depodaki uzak eşlerine gönder:
1919

2020
`git push --all {{uzak_bağlantı}}`
2121

2222
- Uzak depodaki bir dalı sil:
2323

24-
`git push {{uzak_bağlantı}} --delete {{uzak_dal}}`
24+
`git push {{uzak_bağlantı}} {{[-d|--delete]}} {{uzak_dal}}`
2525

2626
- Yerel eşi olmayan uzak dalları sil:
2727

pages.uk/common/git-push.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
- Надіслати зміни із вказаної локальної гілки до її віддаленого відповідника та встановити цю віддалену гілку як типову для дій надсилання і стягування:
1515

16-
`git push -u {{назва_сховища}} {{локальна_гілка}}`
16+
`git push {{[-u|--set-upstream]}} {{назва_сховища}} {{локальна_гілка}}`
1717

1818
- Надіслати зміни із вказаної локальної гілки до вказаної віддаленої:
1919

@@ -25,7 +25,7 @@
2525

2626
- Видалити гілку у віддаленому репозиторії:
2727

28-
`git push {{назва_сховища}} --delete {{віддалена_гілка}}`
28+
`git push {{назва_сховища}} {{[-d|--delete]}} {{віддалена_гілка}}`
2929

3030
- Видалити віддалену гілку, що не містить локального відповідника:
3131

0 commit comments

Comments
 (0)