diff options
| author | Robby Russell <robby@planetargon.com> | 2012-12-02 09:41:51 -0800 |
|---|---|---|
| committer | Robby Russell <robby@planetargon.com> | 2012-12-02 09:41:51 -0800 |
| commit | 31ad21398efc79505bf08f18884e739ecd73bfce (patch) | |
| tree | 5d206e46ff1271dcde601c59da00001a7b4c1fa1 /plugins/github | |
| parent | 22f827e122187032afb1f473d19a4238899e8ecd (diff) | |
| parent | f29daef2973018e60900553b0ea69074a5d9a5de (diff) | |
| download | zsh-31ad21398efc79505bf08f18884e739ecd73bfce.tar.gz zsh-31ad21398efc79505bf08f18884e739ecd73bfce.tar.bz2 zsh-31ad21398efc79505bf08f18884e739ecd73bfce.zip | |
Merge pull request #1452 from miry/github
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 |
