Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/viko16/gitcd.plugin.zsh

👷 [oh-my-zsh plugin] git clone and change directory by a single command
https://github.com/viko16/gitcd.plugin.zsh

gitcd oh-my-zsh-plugin zsh

Last synced: 26 days ago
JSON representation

👷 [oh-my-zsh plugin] git clone and change directory by a single command

Awesome Lists containing this project

README

        

# gitcd.plugin.zsh

👷 [oh-my-zsh plugin] git clone and change directory by a single command

## Installation

1. Clone this repository into `$ZSH_CUSTOM/plugins` (by default `~/.oh-my-zsh/custom/plugins`)

```sh
git clone https://github.com/viko16/gitcd.plugin.zsh ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/gitcd
```

2. Add the plugin to the list of plugins for Oh My Zsh to load (inside `~/.zshrc`):

```sh
plugins=(gitcd)
```

3. Start a new terminal session.

## Usage

```sh
$ gitcd
```

Example:

```sh
$ gitcd https://github.com/viko16/gitcd.plugin.zsh.git
# => will git clone and cd to "~/Code/github.com/viko16/gitcd.plugin.zsh"
```

If the repository is already cloned to local, it will automatically "[cd](https://en.wikipedia.org/wiki/Cd_(command))" there.

## Config

By default, `gitcd` will git clone under `~/Code//`.
If you want to change base dir, just set Environmental Variable name `GITCD_HOME`.

Example:

```sh
$ export GITCD_HOME=~/myworkspace
$ gitcd https://github.com/facebook/react
# => ~/myworkspace/github.com/facebook/react
```

To omit the part from the local clone path, set `GITCD_USEHOST` to `false` (the value is not case sensitive).

Example:

```sh
$ export GITCD_HOME=~/myworkspace GITCD_USEHOST=false
$ gitcd https://github.com/facebook/react
# => ~/myworkspace/facebook/react
```

## Test

```sh
zsh ./test.zsh
```

## Thanks
- https://github.com/goreliu/zshguide
- https://github.com/repo-utils/giturl
- https://github.com/robbyrussell/oh-my-zsh/wiki/Customization

## License

[MIT License](https://opensource.org/licenses/MIT) © [viko16](https://github.com/viko16)