8000 Fix Markdown format, the right way! · nirajkvinit/github-cheat-sheet@affe6ce · GitHub
[go: up one dir, main page]

Skip to content

Commit affe6ce

Browse files
committed
Fix Markdown format, the right way!
Ref: https://github.github.com/gfm/#example-193
1 parent 63f4c2b commit affe6ce

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.ja.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -929,7 +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"` |
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"` |
933933
| `git remotes` | `git remote -v` | `git config --global alias.remotes 'remote -v'` |
934934
| `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 --"` |
935935

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` &#124; `grep -v '*'` &#124; `xargs git branch -d` | `git config --global alias.cleanup "!git branch --merged` &#124; `grep -v '*'` &#124; `xargs git branch -d"` |
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"` |
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.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -967,7 +967,7 @@ Some useful aliases include:
967967
| `git st` | `git status -sb` | `git config --global alias.st 'status -sb'` |
968968
| `git tags` | `git tag -l` | `git config --global alias.tags 'tag -l'` |
969969
| `git branches` | `git branch -a` | `git config --global alias.branches 'branch -a'` |
970-
| `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"` |
970+
| `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"` |
971971
| `git remotes` | `git remote -v` | `git config --global alias.remotes 'remote -v'` |
972972
| `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 --"` |
973973

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` &#124; `grep -v '*'` &#124; `xargs git branch -d` | `git config --global alias.cleanup "!git branch --merged` &#124; `grep -v '*'` &#124; `xargs git branch -d"` |
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"` |
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` &#124; `grep -v '*'` &#124; `xargs git branch -d` | `git config --global alias.cleanup "!git branch --merged` &#124; `grep -v '*'` &#124; `xargs git branch -d"` |
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"` |
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