54
48

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

git pushはgit push origin HEADが便利です

Last updated at Posted at 2022-04-13

はじめに

新人プログラマ応援イベントの参加記事です。

表題の件、何番煎じか分かりませんが、自分の周りで割と知らない人も多かったので、
記事にしておこうと思います。

本題

カレントブランチを同名のリモートブランチにpushするときの便利な技です。
pushするとき、以下のようなコマンドを打つかと思います。

$ git push origin {カレントブランチ名}

カレントブランチ名を毎回入力するのは面倒くさいので、

$ git push origin HEAD

HEADを指定すれば楽です。

参考

54
48
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
54
48

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?