Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/haysclark/zsh-jx
Zsh plugin for Jenkins-X CLI
https://github.com/haysclark/zsh-jx
Last synced: 14 days ago
JSON representation
Zsh plugin for Jenkins-X CLI
- Host: GitHub
- URL: https://github.com/haysclark/zsh-jx
- Owner: haysclark
- License: mit
- Created: 2022-01-07T00:06:33.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-07T06:54:23.000Z (almost 3 years ago)
- Last Synced: 2024-10-27T23:35:56.265Z (2 months ago)
- Language: Shell
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# zsh-jx
A [ohmyzsh](https://github.com/ohmyzsh/ohmyzsh/) plugin for the Jenkins-X CLI.
## Installation
> [ohmyzsh](https://github.com/ohmyzsh/ohmyzsh/) needs to be installed.
1. **Clone the repo into your `custom/plugins` folder.**
```bash
git clone https://github.com/haysclark/zsh-jx.git ~/.oh-my-zsh/custom/plugin/jx
```2. **Add 'jx' to your `.zshrc` file.**
```bash
plugins=(jx)
```
Open a new zsh session or re-source your existing shell.
```bash
source ~/.zshrc
```## Usage
### Updating
1. **Get the latest version by pulling and rebasing your repo.**
```bash
cd ~/.oh-my-zsh/custom/plugin/jx
git fetch origin main && git rebase origin/main
```