【Git】管理されているファイル情報をみる

リポジトリで「管理されている」ファイルのリストを取得する

ls-filesコマンドの-cオプションを使用する

ls-filesはデフォルトで-cオプションがついている

-c, –cached

Show cached files in the output (default)

実行結果例

1
2
3
4
5
6
% git ls-files 
1
2
3
4
aaa

リポジトリで「管理されていない」ファイルのリストを取得する

ls-filesコマンドの-oオプションを使用する

-o, –others

Show other (i.e. untracked) files in the output

実行結果例

1
2
3
% git ls-files -o
5
bbb
Author

Daiki Iijima

Posted on

2021-03-07

Updated on

2024-04-17

Licensed under