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】git statusで現在の状態を確認する

Posted at

#はじめに
今回は、gitのコマンドであるgit statusについて見ていきます。

#git status
git statusは、ディレクトリの現在の状態を確認するコマンドです。
以下の①〜③の3つの状態でgit statusを行うと、以下のように表示されます。

###①ワークツリーで変更を加えたファイルがない場合

ターミナル
git status
On branch master
nothing to commit, working tree clean

###②ファイルに変更を加えたが、まだgit addしていない場合

ターミナル
git status
On branch master
Changes not staged for commit:
  (use "git add <file>..." to update what will be committed)
  (use "git restore <file>..." to discard changes in working directory)
        modified:   <変更を加えたファイル名>

no changes added to commit (use "git add" and/or "git commit -a")

###③ファイルに変更を加えてgit addしたが、まだgit commitしていない場合

ターミナル
git add <ファイル名>
git status
On branch master
Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
        modified:   <ファイル名>

#git statusの使えるオプション
###-s(--short)
名前のとおり、短いフォーマットで表示してくれます。

###-b(--branch)
現在のブランチを表示してくれます。
これは、上記の-sと一緒に使います。

ターミナル
git status -sb

#おわりに
git statusを使ってこまめに状態を確認する癖を付けると良いかと思います。

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?