Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

*: fix style guide issues part 4 #15788

Draft
wants to merge 5 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
git-stash
  • Loading branch information
Managor committed Feb 24, 2025
commit 253f76773f23402d1c351d1d1da349645016d34b
8 changes: 4 additions & 4 deletions pages.es/common/git-stash.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@

- Almacena los cambios actuales, excepto los archivos nuevos (sin seguimiento):

`git stash push --message {{mensaje_opcional_stash}}`
`git stash push {{[-m|--message]}} {{mensaje_opcional_stash}}`

- Almacena los cambios actuales, incluyendo los archivos nuevos (sin seguimiento):

`git stash --include-untracked`
`git stash {{[-u|--include-untracked]}}`

- Selecciona interactivamente partes de los archivos modificados para almacenarlos:

`git stash --patch`
`git stash {{[-p|--patch]}}`

- Lista todos los stashes (muestra el nombre del stash, la rama relacionada y el mensaje):

`git stash list`

- Muestra los cambios como un parche entre el stash (por defecto es `stash@{0}`) y la confirmación de cuando se creó la entrada stash por primera vez:

`git stash show --patch {{stash@{0}}}`
`git stash show {{[-p|--patch]}} {{stash@{0}}}`

- Aplica un stash (por defecto es el último, llamado `stash@{0}`):

Expand Down
6 changes: 3 additions & 3 deletions pages.fr/common/git-stash.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@

- Stocker les changements courants, sauf les fichiers non-suivis :

`git stash push -m {{nom_de_stash_optionel}}`
`git stash push {{[-m|--message]}} {{nom_de_stash_optionel}}`

- Stocker les changements courants, incluant les fichiers non-suivis :

`git stash -u`
`git stash {{[-u|--include-untracked]}}`

- Stocker les parties d'un fichier interactivement :

`git stash -p`
`git stash {{[-p|--patch]}}`

- Lister tous les stashs (affiche leurs noms, les branches relatives et messages) :

Expand Down
6 changes: 3 additions & 3 deletions pages.it/common/git-stash.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@

- Salva in un'area temporanea modifiche locali, tranne i file nuovi e non tracciati:

`git stash push -m {{messaggio_di_stash_opzionale}}`
`git stash push {{[-m|--message]}} {{messaggio_di_stash_opzionale}}`

- Includi nello stash anche i file nuovi e non tracciati:

`git stash -u`
`git stash {{[-u|--include-untracked]}}`

- Seleziona per lo stash parti di file modificati in modo interattivo:

`git stash -p`
`git stash {{[-p|--patch]}}`

- Elenca tutti gli stash, mostrandone il nome, ramo relativo e messaggio:

Expand Down
8 changes: 4 additions & 4 deletions pages.ko/common/git-stash.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,23 @@

- 새롭게 생성한 (Git에서 관리하지 않는) 파일을 제외하고 현재 변경사항을 메시지와 함께 임시 저장:

`git stash push --message {{optional_stash_message}}`
`git stash push {{[-m|--message]}} {{optional_stash_message}}`

- 새롭게 생성한 (Git에서 관리하지 않는) 파일을 포함하여 현재 변경사항을 임시 저장:

`git stash --include-untracked`
`git stash {{[-u|--include-untracked]}}`

- 변경된 파일들의 특정 부분만 선택하여 임시 저장 (대화형 프롬프트):

`git stash --patch`
`git stash {{[-p|--patch]}}`

- 모든 임시 저장 목록 표시 (임시 저장 이름, 관련 브랜치 및 메시지 표시):

`git stash list`

- 임시 저장(기본값은 `stash@{0}`)과 해당 임시 저장이 생성된 시점의 커밋 사이의 변경 사항을 터미널에 상세히 표시:

`git stash show --patch {{stash@{0}}}`
`git stash show {{[-p|--patch]}} {{stash@{0}}}`

- 임시 저장 적용 (기본값은 가장 최근 임시 저장인 stash@{0}):

Expand Down
6 changes: 3 additions & 3 deletions pages.tr/common/git-stash.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@

- Yeni (izlenmeyen) dosyalar hariç mevcut değişiklikleri sakla:

`git stash push -m {{keyfi_saklama_mesajı}}`
`git stash push {{[-m|--message]}} {{keyfi_saklama_mesajı}}`

- Yeni (izlenmeyen) dosyalar dahil mevcut değişiklikleri sakla:

`git stash -u`
`git stash {{[-u|--include-untracked]}}`

- Değiştirilen dosyaların parçalarını etkileşimli şekilde seçip sakla:

`git stash -p`
`git stash {{[-p|--patch]}}`

- Tüm saklananları göster (saklanan ismi, bağlı olduğu dal ve mesaj gösterilir):

Expand Down
16 changes: 8 additions & 8 deletions pages/common/git-stash.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,25 +3,25 @@
> Stash local Git changes in a temporary area.
> More information: <https://git-scm.com/docs/git-stash>.

- Stash current changes with a [m]essage, except new (untracked) files:
- Stash current changes with a message, except new (untracked) files:

`git stash push --message {{optional_stash_message}}`
`git stash push {{[-m|--message]}} {{optional_stash_message}}`

- Stash current changes, including new ([u]ntracked) files:
- Stash current changes, including new untracked files:

`git stash --include-untracked`
`git stash {{[-u|--include-untracked]}}`

- Interactively select [p]arts of changed files for stashing:
- Interactively select parts of changed files for stashing:

`git stash --patch`
`git stash {{[-p|--patch]}}`

- List all stashes (shows stash name, related branch and message):

`git stash list`

- Show the changes as a [p]atch between the stash (default is `stash@{0}`) and the commit back when stash entry was first created:
- Show the changes as a patch between the stash (default is `stash@{0}`) and the commit back when stash entry was first created:

`git stash show --patch {{stash@{0}}}`
`git stash show {{[-p|--patch]}} {{stash@{0}}}`

- Apply a stash (default is the latest, named stash@{0}):

Expand Down