Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
git coコマンドを入力と同じにしたいと思いますgit checkout。
git co
git checkout
通常の Bash エイリアス ( alias co='checkout') は機能しません。
alias co='checkout'
コマンド:
git config --global alias.co checkout
そのための git エイリアスを作成します。~/.gitconfig次のエントリがグローバルファイルに追加されます。
~/.gitconfig
[alias] co = checkout
また、これを git config に編集することもできます: