0
1

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】暗記できない自分用のgit commandメモ

Last updated at Posted at 2021-06-21

毎回あのコマンドどう打つんだっけ?ってなるので
メモ用に自分がよく使うgit commandをまとめたものになります。

gitのコマンドちゃんと覚えている人すごい・・・

サブモジュールを最新に更新する

$ git submodule foreach git pull origin master

brunchに登録されているハッシュ値を更新する

$ git submodule update --init --recursive

変更退避

$ git stash

退避したリスト表示

$ git stash list

退避した作業を戻す

$ git stash apply stash@{0}

退避した作業の削除

$ git stash drop stash@{0}

add取り消し

$ git reset HEAD <ファイル名>

commitの取り消し

$ git reset --hard HEAD^

一部の更新だけを取り込みたい

$ git cherry-pick <ハッシュ値>

ローカルブランチお掃除候補表示

$ git branch --merged | grep -v 'master\|develop'

ローカルブランチお掃除

$ git branch --merged | grep -v 'master\|develop' | xargs -I% git branch -D %

空のブランチをcommitする

git commit --allow-empty -m "empty commit"

忘れて検索したものを随時更新していきます。

0
1
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
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?