🦁Gitのショートカットコマンド2024/03/20に公開GitGitHubtechconfigファイルをVSCodeで開く。 code ~/.gitconfig エイリアスを以下のように設定しておく。 .gitconfig [alias] sm = !git switch main && git pull --prune && git branch | xargs git branch -D cb = !git checkout -b そうすると以下のように使える。 git sm git cb "feat-xxx" Discussion
Discussion