git ブランチを作成してリモートにpushするエイリアス#
git エイリアスで引数を使うを利用してブランチ作成とpushを同時に行う
~/.gitconfig
[alias]
cobp = "!f(){ git checkout -b $1 && git push -u origin $1;};f"`
git エイリアスで引数を使うを利用してブランチ作成とpushを同時に行う
~/.gitconfig
[alias]
cobp = "!f(){ git checkout -b $1 && git push -u origin $1;};f"`