Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
8cbe9846
Unverified
Commit
8cbe9846
authored
Jun 26, 2023
by
Devraj Mehta
Committed by
GitHub
Jun 26, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(git): remove color codes from some aliases (#11770)
parent
d5f1f50a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
README.md
plugins/git/README.md
+2
-2
git.plugin.zsh
plugins/git/git.plugin.zsh
+2
-2
No files found.
plugins/git/README.md
View file @
8cbe9846
...
...
@@ -26,8 +26,8 @@ plugins=(... git)
| gbda | git branch --no-color --merged
\|
grep -vE "^(
[
+*
]
\|\s
*(<span>$</span>(git_main_branch)\|<span>$</span>(git_develop_branch))\s*
<span>
$
</span>
)"
\|
xargs git branch --delete 2>/dev/null |
| gbD | git branch --delete --force |
| gbg | git branch -vv | grep ": gone
\]
" |
| gbgd |
local res=$(git branch -vv | grep ": gone
\]
" | awk '{print $1}') &&
[
[ $res
]
] && echo $res | xargs git branch -d
|
| gbgD |
local res=$(git branch -vv | grep ": gone
\]
" | awk '{print $1}') &&
[
[ $res
]
] && echo $res | xargs git branch -D
|
| gbgd |
git branch --no-color -vv | grep ": gone
\]
" | awk '"'"'{print $1}'"'"' | xargs git branch -d
|
| gbgD |
git branch --no-color -vv | grep ": gone
\]
" | awk '"'"'{print $1}'"'"' | xargs git branch -D
|
| gbl | git blame -b -w |
| gbnm | git branch --no-merged |
| gbr | git branch --remote |
...
...
plugins/git/git.plugin.zsh
View file @
8cbe9846
...
...
@@ -84,8 +84,8 @@ alias gbd='git branch --delete'
alias
gbda
=
'git branch --no-color --merged | command grep -vE "^([+*]|\s*($(git_main_branch)|$(git_develop_branch))\s*$)" | command xargs git branch --delete 2>/dev/null'
alias
gbD
=
'git branch --delete --force'
alias
gbg
=
'git branch -vv | grep ": gone\]"'
alias
gbgd
=
'
local res=$(gbg | awk '
"'"
'{print $1}'
"'"
') && [[ $res ]] && echo $res
| xargs git branch -d'
alias
gbgD
=
'
local res=$(gbg | awk '
"'"
'{print $1}'
"'"
') && [[ $res ]] && echo $res
| xargs git branch -D'
alias
gbgd
=
'
git branch --no-color -vv | grep ": gone\]" | awk '
"'"
'{print $1}'
"'"
'
| xargs git branch -d'
alias
gbgD
=
'
git branch --no-color -vv | grep ": gone\]" | awk '
"'"
'{print $1}'
"'"
'
| xargs git branch -D'
alias
gbl
=
'git blame -b -w'
alias
gbnm
=
'git branch --no-merged'
alias
gbr
=
'git branch --remote'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment