記事の内容
概要
git statusは、管理システムでリポジトリ内の変更の状態を確認するためのコマンドです。
git status
$ git status
On branch feature/inertia_vuejs
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
modified: resources/js/Pages/InertiaTest.vue
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: app/Http/Controllers/InertiaTestController.php
deleted: resources/js/Pages/Inertia/Index.vue
Untracked files:
(use "git add <file>..." to include in what will be committed)
.env.dev
On branch feature/inertia_vuejs
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
modified: resources/js/Pages/InertiaTest.vue
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: app/Http/Controllers/InertiaTestController.php
deleted: resources/js/Pages/Inertia/Index.vue
Untracked files:
(use "git add <file>..." to include in what will be committed)
.env.dev
オプション一覧
単語 | 説明 |
---|---|
-s | ショートフォーマットで出力 |
-v | 送信回数を指定 |
-s
sオプションは、変更されたファイルや未追跡のファイルのリストが短い形式で表示されます。
git status -s
$ git status -s
M app/Http/Controllers/InertiaTestController.php
M resources/js/Pages/InertiaTest.vue
?? .env.dev
【ステータスコードの意味】
ステータスコード | 説明 |
---|---|
_M | 変更されたファイル(ワークツリー) |
M_ | 変更されたファイル(ステージンエリア) |
A | 新しく追加されたファイル |
D | 削除されたファイル |
R | リネームされたファイル |
C | コピーされたファイル |
?? | 未追跡のファイル |
-v
vオプションは、変更されたファイルの詳細な情報を表示することができます。
git status -v
$ git status -v
On branch feature/inertia_vuejs
Changes to be committed:
(use "git restore --staged <file>..." to unstage)
modified: resources/js/Pages/InertiaTest.vue
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: app/Http/Controllers/InertiaTestController.php
Untracked files:
(use "git add <file>..." to include in what will be committed)
.env.dev
diff --git a/resources/js/Pages/InertiaTest.vue b/resources/js/Pages/InertiaTest.vue
index bbffaa0..1300c65 100644
--- a/resources/js/Pages/InertiaTest.vue
+++ b/resources/js/Pages/InertiaTest.vue
@@ -8,6 +8,6 @@ import { Link } from "@inertiajs/vue3";
<Link href="/">LinkでWelcomeに移動</Link><br />
<Link :href="route('inertia.index')">名前付きルートの確認です</Link><br />
<Link :href="route('inertia.show', { id: 1 })"
- >ルートパラメータのテストです</Link
+ >ルートパラメータのテストです。</Link
>
</template>
diff --git a/resources/js/Pages/InertiaTest.vue b/resources/js/Pages/InertiaTest.vue
index bbffaa0..1300c65 100644
--- a/resources/js/Pages/InertiaTest.vue
+++ b/resources/js/Pages/InertiaTest.vue
@@ -8,6 +8,6 @@ import { Link } from "@inertiajs/vue3";
<Link href="/">LinkでWelcomeに移動</Link><br />
<Link :href="route('inertia.index')">名前付きルートの確認です</Link><br />
<Link :href="route('inertia.show', { id: 1 })"
- >ルートパラメータのテストです</Link
+ >ルートパラメータのテストです。</Link
>
</template>