зеркало из https://github.com/mislav/hub.git
Fix zshell aliasing so git tab completion works
This commit is contained in:
Родитель
04547d9aaa
Коммит
bf3f256458
|
@ -2,6 +2,10 @@
|
||||||
|
|
||||||
*
|
*
|
||||||
|
|
||||||
|
## 0.3.2 (2010-02-17)
|
||||||
|
|
||||||
|
* Fixed zshell git completion / aliasing - `hub alias zsh`.
|
||||||
|
|
||||||
## 0.3.1 (2010-02-13)
|
## 0.3.1 (2010-02-13)
|
||||||
|
|
||||||
* Add `hub remote origin` shortcut. Assumes your GitHub login.
|
* Add `hub remote origin` shortcut. Assumes your GitHub login.
|
||||||
|
|
|
@ -189,7 +189,7 @@ module Hub
|
||||||
shells = {
|
shells = {
|
||||||
'sh' => 'alias git=hub',
|
'sh' => 'alias git=hub',
|
||||||
'bash' => 'alias git=hub',
|
'bash' => 'alias git=hub',
|
||||||
'zsh' => 'alias git=hub',
|
'zsh' => 'function git(){hub $@}',
|
||||||
'csh' => 'alias git hub',
|
'csh' => 'alias git hub',
|
||||||
'fish' => 'alias git hub'
|
'fish' => 'alias git hub'
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,7 @@ class AliasTest < Test::Unit::TestCase
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_alias_zsh
|
def test_alias_zsh
|
||||||
assert_alias_command "zsh", "alias git=hub"
|
assert_alias_command "zsh", "function git(){hub $@}"
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_alias_csh
|
def test_alias_csh
|
||||||
|
|
Загрузка…
Ссылка в новой задаче