8000 Fix Aliases Markdown format for other translations · nirajkvinit/github-cheat-sheet@63f4c2b · GitHub
[go: up one dir, main page]

Skip to content
8000

Commit 63f4c2b

Browse files
committed
Fix Aliases Markdown format for other translations
1 parent e59dac6 commit 63f4c2b

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

README.ja.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -929,8 +929,7 @@ $ git config --global alias.ac 'add -A . && commit'
929929
| `git st` | `git status -sb` | `git config --global alias.st 'status -sb'` |
930930
| `git tags` | `git tag -l` | `git config --global alias.tags 'tag -l'` |
931931
| `git branches` | `git branch -a` | `git config --global alias.branches 'branch -a'` |
932-
| `git cleanup` | `git branch --merged | grep -v '*' | xargs git branch -d` | `git config --global alias.cleanup "!git branch --merged | grep -v '*' | xargs git branch -d"` |
933-
| `git cleanup` | `git branch --merged | grep -v '*' | xargs git branch -d` | `git config --global alias.cleanup "!git branch --merged | grep -v '*' | xargs git branch -d"` |
932+
| `git cleanup` | `git branch --merged` | `grep -v '*'` | `xargs git branch -d` | `git config --global alias.cleanup "!git branch --merged` | `grep -v '*'` | `xargs git branch -d"` |
934933
| `git remotes` | `git remote -v` | `git config --global alias.remotes 'remote -v'` |
935934
| `git lg` | `git log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --` | `git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --"` |
936935

README.ko.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1021,7 +1021,7 @@ $ git config --global alias.ac 'add -A . && commit'
10211021
| `git st` | `git status -sb` | `git config --global alias.st 'status -sb'` |
10221022
| `git tags` | `git tag -l` | `git config --global alias.tags 'tag -l'` |
10231023
| `git branches` | `git branch -a` | `git config --global alias.branches 'branch -a'` |
1024-
| `git cleanup` | `git branch --merged | grep -v '*' | xargs git branch -d` | `git config --global alias.cleanup "!git branch --merged | grep -v '*' | xargs git branch -d"` |
1024+
| `git cleanup` | `git branch --merged` &#124; `grep -v '*'` &#124; `xargs git branch -d` | `git config --global alias.cleanup "!git branch --merged` &#124; `grep -v '*'` &#124; `xargs git branch -d"` |
10251025
| `git remotes` | `git remote -v` | `git config --global alias.remotes 'remote -v'` |
10261026
| `git lg` | `git log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --` | `git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --"` |
10271027

README.zh-cn.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ $ git config --global alias.ac 'add -A . && commit'
861861
| `git st` | `git status -sb` | `git config --global alias.st 'status -sb'` |
862862
| `git tags` | `git tag -l` | `git config --global alias.tags 'tag -l'` |
863863
| `git branches` | `git branch -a` | `git config --global alias.branches 'branch -a'` |
864-
| `git cleanup` | `git branch --merged | grep -v '*' | xargs git branch -d` | `git config --global alias.cleanup "!git branch --merged | grep -v '*' | xargs git branch -d"` |
864+
| `git cleanup` | `git branch --merged` &#124; `grep -v '*'` &#124; `xargs git branch -d` | `git config --global alias.cleanup "!git branch --merged` &#124; `grep -v '*'` &#124; `xargs git branch -d"` |
865865
| `git remotes` | `git remote -v` | `git config --global alias.remotes 'remote -v'` |
866866
| `git lg` | `git log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --` | `git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --"` |
867867

README.zh-tw.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -905,7 +905,7 @@ $ git config --global alias.ac 'add -A . && commit'
905905
| `git st` | `git status -sb` | `git config --global alias.st 'status -sb'` |
906906
| `git tags` | `git tag -l` | `git config --global alias.tags 'tag -l'` |
907907
| `git branches` | `git branch -a` | `git config --global alias.branches 'branch -a'` |
908-
| `git cleanup` | `git branch --merged | grep -v '*' | xargs git branch -d` | `git config --global alias.cleanup "!git branch --merged | grep -v '*' | xargs git branch -d"` |
908+
| `git cleanup` | `git branch --merged` &#124; `grep -v '*'` &#124; `xargs git branch -d` | `git config --global alias.cleanup "!git branch --merged` &#124; `grep -v '*'` &#124; `xargs git branch -d"` |
909909
| `git remotes` | `git remote -v` | `git config --global alias.remotes 'remote -v'` |
910910
| `git lg` | `git log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --` | `git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --"` |
911911

0 commit comments

Comments
 (0)
0