LoginSignup
0
0

More than 1 year has passed since last update.

[Git] 現在のbranchの最新のコミットを1コマンドでpullする

Posted at

結論

git rev-parse --abbrev-ref HEAD | git pull origin

bash_profile

エイリアスに登録

shell .bash_profile
alias gploh="git rev-parse --abbrev-ref HEAD | git pull origin"

これで、gploh で current branchの最新コミットをpull できるようになりました。
gploh は g (git) + pl (pull) + o (origin) + h (HEAD) のつもりです。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0