1
0

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 3 years have passed since last update.

忘れていた(新しく知った)Gitコマンド集

Last updated at Posted at 2019-08-23

別の仕事をした後にGitを操作するとよくコマンドを忘れるんですよね。
随時更新していきます(更新がないのが一番良いですが:sweat_smile:)

追記: 新しく知ったコマンドも追加しました。

忘れていたコマンド

git merge --abort

マージでコンフリクトを起こした時とかに一度マージ前に戻したい時に使う

git reflog

gitの操作履歴を表示

git commit --amend

以前のコミットに現在の変更を取り込ませる
何もステージに挙げていない場合は以前のコミットのコメントを編集することができるから便利

git remote add

git remote add origin [リモートリポジトリのURLのcopy]

ローカルリポジトリとリモートリポジトリを紐付ける

Gitでローカルリポジトリを作成して、後にリモートリポジトリへ反映する

git push --set-upstream

git push --set-upstream origin master

プッシュ先を指定する

新しく知ったコマンド

git remote set-url origin

remoteのURLを変更する

git count-objects -vH

オブジェクトファイルの数とそれらが消費するディスク容量を数える
-v: 詳細に教えてくれる
-H:ファイルサイズに単位を付けてくれる(KiB等)

git checkout [ファイル名]

ローカルの変更を破棄する
すべて破棄するときは以下コマンド
git checkout .

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?