Fix references now that the repo has been renamed on GitHub

This commit is contained in:
Joe Block
2016-04-07 14:01:24 -07:00
parent 502e10fcb3
commit fc991a4909

View File

@@ -1,9 +1,11 @@
# bitbucket-git-helpers
Some git helper scripts for dealing with repos on bitbucket. Inspired by Peter Hurford's [git-it-on.zsh](https://github.com/peterhurford/git-it-on.zsh) plugin.
Some git helper scripts for dealing with repos on bitbucket that were inspired by Peter Hurford's [git-it-on.zsh](https://github.com/peterhurford/git-it-on.zsh) plugin.
*Note:* This has only been tested on OS X. Support for Linux is present but has not been tested.
The irony that I'm hosting this on Github hasn't escaped me.
## Contents
<!-- START doctoc generated TOC please keep comment here to allow auto update -->
@@ -36,8 +38,8 @@ Usage:
If you're using [Antigen](https://github.com/zsh-users/antigen):
1. Add `antigen bundle unixorn/bitbucket-git-helpers` to your `.zshrc` where you've listed your other plugins.
2. Close and reopen your Terminal/iTerm window to **refresh context** and use the plugin. Alternatively, you can run `antigen bundle unixorn/bitbucket-git-helpers` in a running shell to have antigen load the new plugin.
1. Add `antigen bundle unixorn/bitbucket-git-helpers.plugin.zsh` to your `.zshrc` where you've listed your other plugins.
2. Close and reopen your Terminal/iTerm window to **refresh context** and use the plugin. Alternatively, you can run `antigen bundle unixorn/bitbucket-git-helpers.plugin.zsh` in a running shell to have antigen load the new plugin.
### oh-my-zsh
@@ -49,11 +51,11 @@ If you're using [oh-my-zsh](github.com/robbyrussell/oh-my-zsh):
2. Clone the repository into a new `bitbucket-git-helpers` directory:
`git clone https://github.com/unixorn/bitbucket-git-helpers.git bitbucket-git-helpers`
`git clone https://github.com/unixorn/bitbucket-git-helpers.plugin.zsh.git bitbucket-git-helpers.plugin.zsh`
3. Edit your `~/.zshrc` and add `bitbucket-git-helpers` same as clone directory to the list of plugins to enable:
3. Edit your `~/.zshrc` and add `bitbucket-git-helpers.plugin.zsh` same as clone directory to the list of plugins to enable:
`plugins=( ... bitbucket-git-helpers )`
`plugins=( ... bitbucket-git-helpers.plugin.zsh )`
4. Then, restart your terminal application to **refresh context** and use the plugin. Alternatively, you can source your current shell configuration:
@@ -63,7 +65,7 @@ If you're using [oh-my-zsh](github.com/robbyrussell/oh-my-zsh):
If you're using [zgen](https://github.com/tarjoilija/zgen):
1. Add `zgen load unixorn/bitbucket-git-helpers` to your `.zshrc` along with your other `zgen load` commands.
1. Add `zgen load unixorn/bitbucket-git-helpers.plugin.zsh` to your `.zshrc` along with your other `zgen load` commands.
2. `rm ${ZGEN_INIT}/init.zsh && zgen save`
### Manual Installation