1
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-10-16 11:40:46 +00:00

Compare commits

...

5 commits

Author SHA1 Message Date
Mohammad Jolani
cd1fd3fa7f
Merge 4056aaa986 into 367e9381df 2024-09-23 17:33:05 +02:00
Carlo Sala
367e9381df
chore(git): fix typo 2024-09-23 17:32:44 +02:00
Mohammad Jolani
4056aaa986
Merge pull request #1 from maljolani/maljolani-patch-1
feat(kubectl): add alias for unset current-context
2024-09-19 13:44:33 +03:00
Mohammad Jolani
5817e0a3c3
Update README.md 2024-09-19 13:42:23 +03:00
Mohammad Jolani
64ea3c0837
feat(kubectl): add alias for unset current-context 2024-09-19 13:39:28 +03:00
3 changed files with 3 additions and 1 deletions

View file

@ -163,7 +163,7 @@ function git_current_branch() {
}
# Outputs the name of the previously checked out branch
# Usage example: git pull origin $(git_current_branch)
# Usage example: git pull origin $(git_previous_branch)
# rev-parse --symbolic-full-name @{-1} only prints if it is a branch
function git_previous_branch() {
local ref

View file

@ -20,6 +20,7 @@ plugins=(... kubectl)
| | | **Manage configuration quickly to switch contexts between local, dev and staging** |
| kcuc | `kubectl config use-context` | Set the current-context in a kubeconfig file |
| kcsc | `kubectl config set-context` | Set a context entry in kubeconfig |
| kucc | `kubectl config unset current-context` | Unset the current-context in a kubeconfig file |
| kcdc | `kubectl config delete-context` | Delete the specified context from the kubeconfig |
| kccc | `kubectl config current-context` | Display the current-context |
| kcgc | `kubectl config get-contexts` | List of contexts available |

View file

@ -29,6 +29,7 @@ alias kcuc='kubectl config use-context'
alias kcsc='kubectl config set-context'
alias kcdc='kubectl config delete-context'
alias kccc='kubectl config current-context'
alias kucc='kubectl config unset current-context'
# List all contexts
alias kcgc='kubectl config get-contexts'