Home zshrcに定義している関数
Post
Cancel

zshrcに定義している関数

概要

  • zshrcに定義している関数をメモとして追加していく

zshrcに定義している関数

git cloneでリポジトリ名だけ指定し、クローンを実行する

  • githubを開いて、clone用のURLをコピーする手間を減らす
1
2
3
4
function gc() {
  git clone git@github.com:SOutaHI/$1.git
}

gitのブランチ変更

  • 入力するコマンドを減らす
1
2
3
4
function gs() {
  git switch -c $1
}

  • aliasの方がいいかも
1
alias gc='git switch -c'
This post is licensed under CC BY 4.0 by the author.