Consistency in design and formatting update.
parent
163425df40
commit
b0e19feafb
171
Plugin:git.md
171
Plugin:git.md
@ -1,108 +1,89 @@
|
||||
# The `git` plugin
|
||||
## The git Plugin
|
||||
|
||||
The [`git` plugin](https://github.com/robbyrussell/oh-my-zsh/tree/master/plugins/git) provides many [aliases](#Aliases) and a few useful [functions](#Functions).
|
||||
The [git](https://github.com/robbyrussell/oh-my-zsh/tree/master/plugins/git) plugin provides many [aliases](#Aliases) and a few useful [functions](#Functions).
|
||||
|
||||
Enable it by adding `git` to the [`plugins` array](https://github.com/robbyrussell/oh-my-zsh/blob/master/templates/zshrc.zsh-template#L48) before sourcing OMZ (see [[Plugins]]).
|
||||
Enable it by adding _git_ to the [_plugins array_](https://github.com/robbyrussell/oh-my-zsh/blob/master/templates/zshrc.zsh-template#L48) before sourcing OMZ (see [[Plugins]]).
|
||||
|
||||
## Aliases
|
||||
|
||||
<table>
|
||||
<tr><th>Alias</th><th>Command</th></tr>
|
||||
<tr><td><pre>g</pre></td><td><pre>git</pre></td></tr>
|
||||
<tr><td><pre>gst</pre></td><td><pre>git status</pre></td></tr>
|
||||
<tr><td><pre>gd</pre></td><td><pre>git diff</pre></td></tr>
|
||||
<tr><td><pre>gdc</pre></td><td><pre>git diff --cached</pre></td></tr>
|
||||
<tr><td><pre>gdv</pre></td><td><pre>git diff -w "$@" | view -</pre></td></tr>
|
||||
<tr><td><pre>gl</pre></td><td><pre>git pull</pre></td></tr>
|
||||
<tr><td><pre>gup</pre></td><td><pre>git pull --rebase</pre></td></tr>
|
||||
<tr><td><pre>gp</pre></td><td><pre>git push</pre></td></tr>
|
||||
<tr><td><pre>gc</pre></td><td><pre>git commit -v</pre></td></tr>
|
||||
<tr><td><pre>gc!</pre></td><td><pre>git commit -v --amend</pre></td></tr>
|
||||
<tr><td><pre>gca</pre></td><td><pre>git commit -v -a</pre></td></tr>
|
||||
<tr><td><pre>gca!</pre></td><td><pre>git commit -v -a --amend</pre></td></tr>
|
||||
<tr><td><pre>gcmsg</pre></td><td><pre>git commit -m</pre></td></tr>
|
||||
<tr><td><pre>gco</pre></td><td><pre>git checkout</pre></td></tr>
|
||||
<tr><td><pre>gcm</pre></td><td><pre>git checkout master</pre></td></tr>
|
||||
<tr><td><pre>gr</pre></td><td><pre>git remote</pre></td></tr>
|
||||
<tr><td><pre>grv</pre></td><td><pre>git remote -v</pre></td></tr>
|
||||
<tr><td><pre>grmv</pre></td><td><pre>git remote rename</pre></td></tr>
|
||||
<tr><td><pre>grrm</pre></td><td><pre>git remote remove</pre></td></tr>
|
||||
<tr><td><pre>grset</pre></td><td><pre>git remote set-url</pre></td></tr>
|
||||
<tr><td><pre>grup</pre></td><td><pre>git remote update</pre></td></tr>
|
||||
<tr><td><pre>grbi</pre></td><td><pre>git rebase -i</pre></td></tr>
|
||||
<tr><td><pre>grbc</pre></td><td><pre>git rebase --continue</pre></td></tr>
|
||||
<tr><td><pre>grba</pre></td><td><pre>git rebase --abort</pre></td></tr>
|
||||
<tr><td><pre>gb</pre></td><td><pre>git branch</pre></td></tr>
|
||||
<tr><td><pre>gba</pre></td><td><pre>git branch -a</pre></td></tr>
|
||||
<tr><td><pre>gcount</pre></td><td><pre>git shortlog -sn</pre></td></tr>
|
||||
<tr><td><pre>gcl</pre></td><td><pre>git config --list</pre></td></tr>
|
||||
<tr><td><pre>gcp</pre></td><td><pre>git cherry-pick</pre></td></tr>
|
||||
<tr><td><pre>glg</pre></td><td><pre>git log --stat --max-count=10</pre></td></tr>
|
||||
<tr><td><pre>glgg</pre></td><td><pre>git log --graph --max-count=10</pre></td></tr>
|
||||
<tr><td><pre>glgga</pre></td><td><pre>git log --graph --decorate --all</pre></td></tr>
|
||||
<tr><td><pre>glo</pre></td><td><pre>git log --oneline --decorate --color</pre></td></tr>
|
||||
<tr><td><pre>glog</pre></td><td><pre>git log --oneline --decorate --color --graph</pre></td></tr>
|
||||
<tr><td><pre>gss</pre></td><td><pre>git status -s</pre></td></tr>
|
||||
<tr><td><pre>ga</pre></td><td><pre>git add</pre></td></tr>
|
||||
<tr><td><pre>gm</pre></td><td><pre>git merge</pre></td></tr>
|
||||
<tr><td><pre>grh</pre></td><td><pre>git reset HEAD</pre></td></tr>
|
||||
<tr><td><pre>grhh</pre></td><td><pre>git reset HEAD --hard</pre></td></tr>
|
||||
<tr><td><pre>gclean</pre></td><td><pre>git reset --hard && git clean -dfx</pre></td></tr>
|
||||
<tr><td><pre>gwc</pre></td><td><pre>git whatchanged -p --abbrev-commit --pretty=medium</pre></td></tr>
|
||||
<tr><td><pre>gpoat</pre></td><td><pre>git push origin --all && git push origin --tags</pre></td></tr>
|
||||
<tr><td><pre>gmt</pre></td><td><pre>git mergetool --no-prompt</pre></td></tr>
|
||||
<tr><td><pre>gg</pre></td><td><pre>git gui citool</pre></td></tr>
|
||||
<tr><td><pre>gga</pre></td><td><pre>git gui citool --amend</pre></td></tr>
|
||||
<tr><td><pre>gk</pre></td><td><pre>gitk --all --branches</pre></td></tr>
|
||||
<tr><td><pre>gsts</pre></td><td><pre>git stash show --text</pre></td></tr>
|
||||
<tr><td><pre>gsta</pre></td><td><pre>git stash</pre></td></tr>
|
||||
<tr><td><pre>gstp</pre></td><td><pre>git stash pop</pre></td></tr>
|
||||
<tr><td><pre>gstd</pre></td><td><pre>git stash drop</pre></td></tr>
|
||||
<tr><td><pre>grt</pre></td><td><pre>cd $(git rev-parse --show-toplevel || echo ".")</pre></td></tr>
|
||||
<tr><td><pre>git-svn-dcommit-push</pre></td><td><pre>git svn dcommit && git push github master:svntrunk</pre></td></tr>
|
||||
<tr><td><pre>gsr</pre></td><td><pre>git svn rebase</pre></td></tr>
|
||||
<tr><td><pre>gsd</pre></td><td><pre>git svn dcommit</pre></td></tr>
|
||||
</table>
|
||||
| Alias | Command |
|
||||
|:---------------------|:-----------------------------------------------------------------------|
|
||||
| g | git |
|
||||
| gst | git status |
|
||||
| gd | git diff |
|
||||
| gdc | git diff --cached |
|
||||
| gdv | git diff -w "$@" | view - |
|
||||
| gl | git pull |
|
||||
| gup | git pull --rebase |
|
||||
| gp | git push |
|
||||
| gc | git commit -v |
|
||||
| gc! | git commit -v --amend |
|
||||
| gca | git commit -v -a |
|
||||
| gca! | git commit -v -a --amend |
|
||||
| gcmsg | git commit -m |
|
||||
| gco | git checkout |
|
||||
| gcm | git checkout master |
|
||||
| gr | git remote |
|
||||
| grv | git remote -v |
|
||||
| grmv | git remote rename |
|
||||
| grrm | git remote remove |
|
||||
| grset | git remote set-url |
|
||||
| grup | git remote update |
|
||||
| grbi | git rebase -i |
|
||||
| grbc | git rebase --continue |
|
||||
| grba | git rebase --abort |
|
||||
| gb | git branch |
|
||||
| gba | git branch -a |
|
||||
| gcount | git shortlog -sn |
|
||||
| gcl | git config --list |
|
||||
| gcp | git cherry-pick |
|
||||
| glg | git log --stat --max-count=10 |
|
||||
| glgg | git log --graph --max-count=10 |
|
||||
| glgga | git log --graph --decorate --all |
|
||||
| glo | git log --oneline --decorate --color |
|
||||
| glog | git log --oneline --decorate --color --graph |
|
||||
| gss | git status -s |
|
||||
| ga | git add |
|
||||
| gm | git merge |
|
||||
| grh | git reset HEAD |
|
||||
| grhh | git reset HEAD --hard |
|
||||
| gclean | git reset --hard && git clean -dfx |
|
||||
| gwc | git whatchanged -p --abbrev-commit --pretty=medium |
|
||||
| gpoat | git push origin --all && git push origin --tags |
|
||||
| gmt | git mergetool --no-prompt |
|
||||
| gg | git gui citool |
|
||||
| gga | git gui citool --amend |
|
||||
| gk | gitk --all --branches |
|
||||
| gsts | git stash show --text |
|
||||
| gsta | git stash |
|
||||
| gstp | git stash pop |
|
||||
| gstd | git stash drop |
|
||||
| grt | cd $(git rev-parse --show-toplevel || echo ".") |
|
||||
| git-svn-dcommit-push | git svn dcommit && git push github master:svntrunk |
|
||||
| gsr | git svn rebase |
|
||||
| gsd | git svn dcommit |
|
||||
| g | git |
|
||||
| ggpull | git pull origin $(current_branch) |
|
||||
| ggpur | git pull --rebase origin $(current_branch) |
|
||||
| ggpush | git push origin $(current_branch) |
|
||||
| ggpnp | git pull origin $(current_branch) && git push origin $(current_branch) |
|
||||
| glp | Prints log with specified [format](http://git-scm.com/docs/git-log) |
|
||||
|
||||
## Functions
|
||||
|
||||
### Current *
|
||||
### Current
|
||||
|
||||
* `current_branch`
|
||||
> Returns the name of the current branch
|
||||
_Example:_ `git pull origin $(current_branch)`
|
||||
|
||||
* `current_repository`
|
||||
> Returns the names of the current remotes
|
||||
|
||||
<table>
|
||||
<tr><th>Alias</th><th>Command</th></tr>
|
||||
<tr><td><pre>g</pre></td><td><pre>git</pre></td></tr>
|
||||
<tr><td><pre>ggpull</pre></td><td><pre>git pull origin $(current_branch)</pre></td></tr>
|
||||
<tr><td><pre>ggpur</pre></td><td><pre>git pull --rebase origin $(current_branch)</pre></td></tr>
|
||||
<tr><td><pre>ggpush</pre></td><td><pre>git push origin $(current_branch)</pre></td></tr>
|
||||
<tr><td><pre>ggpnp</pre></td><td><pre>git pull origin $(current_branch) && git push origin $(current_branch)</pre></td></tr>
|
||||
</table>
|
||||
|
||||
### Pretty log messages
|
||||
|
||||
* `glp`
|
||||
> Prints log with specified [format](http://git-scm.com/docs/git-log)
|
||||
_Example:_ `glp "%h - %an, %ar : %s"`
|
||||
|
||||
* `glp`
|
||||
> Prints log with specified [format](http://git-scm.com/docs/git-log)
|
||||
_Example:_ `glp "%h - %an, %ar : %s"`
|
||||
| Command | Description |
|
||||
|:-------------------|:----------------------------------------|
|
||||
| current_branch | Return the name of the current branch |
|
||||
| current_repository | Return the names of the current remotes |
|
||||
|
||||
### WiP
|
||||
|
||||
These features allow to pause a branch development and switch to another one (_"Work in Progress"_, or wip). When you want to go back to work, just unwip it.
|
||||
These features allow to pause a branch development and switch to another one (_"Work in Progress"_, or wip). When you want to go back to work, just unwip it.
|
||||
|
||||
* `work_in_progress`
|
||||
> Echoes a warning if the current branch is a wip
|
||||
|
||||
* `gwip`
|
||||
> Commit wip branch
|
||||
|
||||
* `gunwip`
|
||||
> Uncommit wip branch
|
||||
| Command | Description |
|
||||
|:-----------------|:------------------------------------------------|
|
||||
| work_in_progress | Echoes a warning if the current branch is a wip |
|
||||
| gwip | Commit wip branch |
|
||||
| gunwip | Uncommit wip branch |
|
||||
|
Loading…
Reference in New Issue
Block a user