diff --git a/pages/common/git-ls-files.md b/pages/common/git-ls-files.md new file mode 100644 index 000000000..08e85eb2c --- /dev/null +++ b/pages/common/git-ls-files.md @@ -0,0 +1,16 @@ +# git ls-files + +> Show information about files in the index and the working tree. +> More information: . + +- Show deleted files: + +`git ls-files --deleted` + +- Show modified and deleted files: + +`git ls-files --modified` + +- Show ignored and untracked files: + +`git ls-files --others`