diff options
author | Michael Nikitochkin <miry.sof@gmail.com> | 2012-12-02 14:16:58 +0200 |
---|---|---|
committer | Michael Nikitochkin <miry.sof@gmail.com> | 2012-12-02 14:16:58 +0200 |
commit | f29daef2973018e60900553b0ea69074a5d9a5de (patch) | |
tree | 5d206e46ff1271dcde601c59da00001a7b4c1fa1 /plugins/github | |
parent | 22f827e122187032afb1f473d19a4238899e8ecd (diff) | |
download | zsh-f29daef2973018e60900553b0ea69074a5d9a5de.tar.gz zsh-f29daef2973018e60900553b0ea69074a5d9a5de.tar.bz2 zsh-f29daef2973018e60900553b0ea69074a5d9a5de.zip |
Fix repo for github.
Diffstat (limited to 'plugins/github')
-rw-r--r-- | plugins/github/github.plugin.zsh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/github/github.plugin.zsh b/plugins/github/github.plugin.zsh index 197e86a48..598b059c1 100644 --- a/plugins/github/github.plugin.zsh +++ b/plugins/github/github.plugin.zsh @@ -61,6 +61,7 @@ exist_gh() { # [DIRECTORY] cd "$1" name=$( git config user.name ) ghuser=$( git config github.user ) + repo=$1 git remote add origin git@github.com:${ghuser}/${repo}.git git push -u origin master |