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

よく使うgitコマンド

Last updated at Posted at 2020-05-31

gitでよく使うコマンド

リポジトリ初期化

$ git init

プル

$ git pull

ブランチを作成し移動

$ git checkout -b ブランチ名

ブランチ削除

$ git branch -D ブランチ名

状態確認

$ git status

差分確認 ※qまたはShiht+Z 2回で終了

$ git diff

選択したファイルをステージング

$ git add ファイル名

コミット

$ git commit -m "コメント"

変更履歴確認

$ git log

コミットメッセージを変更したい

$ git commit --amend -m "変更したいメッセージ"

プッシュ

$ git push origin プッシュ先

チェリーピック

$ git cherry-pick コミットID

過去のコミットに戻る

$ git reset --hard 戻りたいコミットID

過去のコミットに戻るの打消し

$ git reset --hard ORIG_HEAD

最新developを作業用ブランチにマージしたい
1.developブランチでgit pull
2.作業中のローカルブランチに移動
3.マージ

$ git pull
$ git checkout -b ブランチ名
$ git merge develop 
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?