Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
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
adef0e60
Unverified
Commit
adef0e60
authored
Oct 04, 2021
by
Nikolas Garofil
Committed by
GitHub
Oct 04, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat(git): run `gitk` in the background in `gk` and `gke` aliases (#9657)
parent
7152a942
Changes
2
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 @
adef0e60
...
...
@@ -90,8 +90,8 @@ plugins=(... git)
| gignore | git update-index --assume-unchanged |
| gignored | git ls-files -v
\|
grep "^
[
[:lower:
]
]" |
| git-svn-dcommit-push | git svn dcommit && git push github $(git_main_branch):svntrunk |
| gk | gitk --all --branches
|
| gke | gitk --all $(git log -g --pretty=%h)
|
| gk | gitk --all --branches
&!
|
| gke | gitk --all $(git log -g --pretty=%h)
&!
|
| gl | git pull |
| glg | git log --stat |
| glgp | git log --stat -p |
...
...
plugins/git/git.plugin.zsh
View file @
adef0e60
...
...
@@ -201,8 +201,8 @@ alias gignore='git update-index --assume-unchanged'
alias
gignored
=
'git ls-files -v | grep "^[[:lower:]]"'
alias
git-svn-dcommit-push
=
'git svn dcommit && git push github $(git_main_branch):svntrunk'
alias
gk
=
'\gitk --all --branches'
alias
gke
=
'\gitk --all $(git log -g --pretty=%h)'
alias
gk
=
'\gitk --all --branches
&!
'
alias
gke
=
'\gitk --all $(git log -g --pretty=%h)
&!
'
alias
gl
=
'git pull'
alias
glg
=
'git log --stat'
...
...
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