Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
04dd9778
Commit
04dd9778
authored
Aug 24, 2016
by
Marc Cornellà
Browse files
Add README to tig plugin
parent
bf79e1ce
Changes
2
Hide whitespace changes
Inline
Side-by-side
plugins/tig/README.md
0 → 100644
View file @
04dd9778
# `tig` plugin
This plugin adds some aliases for people who work with
`tig`
in
a regular basis. To use it, add
`tig`
to your plugins array:
```
zsh
plugins
=(
... tig
)
```
## Features
| Alias | Command | Description |
|-------|----------------|-------------------------------------------------|
|
`tis`
|
`tig status`
| Show git status |
|
`til`
|
`tig log`
| Show git log |
|
`tib`
|
`tig blame -C`
|
`git-blame`
a file detecting copies and renames |
plugins/tig/tig.plugin.zsh
View file @
04dd9778
alias
tis
=
'tig status'
alias
til
=
'tig log'
# blame a single file and list commits
alias
tib
=
'tig blame -C'
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