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?

More than 3 years have passed since last update.

Git コマンドまとめてみた

Posted at

#git で良く使うコマンド

indexにファイルを移動
$ git add file名

indexに削除、追加、変更されたファイルをindexに移動
$ git add -A

上記同様だがカレントディレクトリ以下のみが実行されるため注意!
$ git add .

indexにあるファイルをコミットメッセージをつけてローカルレポジトリに移動
$ git commit -m "コミットメッセージ"

直前のコミットを取り消す(コマンド実行後再度コミット)
$ git commit --amend

ローカルレポジトリに変更を保存
$ git push origin master
(実際は実務ではこんなことしないらしい、ブランチ切ってそっちにpush推奨)

ローカルレポジトリの指定したブランチにpush
$ git push origin ブランチ名

branchの確認(今いるブランチに*ついてるはず)
$ git branch

⓵branchの作成
$ git branch ブランチ名

⓶今いるブランチから指定のブランチへ移動
$ git checkout ブランチ名

⓵と⓶一緒に実行(もっぱらこれ)
$ git checkout -b ブランチ名

commitされていないファイル
変更があったがaddされていないファイル
.gitignoreに置かれていないにもかかわらずgitの管理外のファイル
といろいろ見れちゃう
$ git status

--------------------------------------------豆知識------------------------------------------------
.gitignoreはここにgitで管理したくないファイル(keyとか人にみられちゃいけないファイル&上げなくてもいいファイル)
書いておけばリモートレポジトリとかにあがらない。これ未経験の場合、就職の書類審査でみられるとか見られないとか
-------------------------------------------------------------------------------------------------

コミットの履歴が見れる(↑で戻り、↓で進む enterで一行ずつ進む qで終了)
$ git log

これは本当に最低限なのでまだまだ使うコマンドはたくさんあると思います。

初めての投稿なので間違いがあれば教えてください。

ps. md記法覚えるのめんどくさいと思いました。(小学生風)

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?