mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 13:05:59 +02:00
git-ls-files: add page (#4753)
This commit is contained in:
parent
18c35024fa
commit
25adf84c03
1 changed files with 16 additions and 0 deletions
16
pages/common/git-ls-files.md
Normal file
16
pages/common/git-ls-files.md
Normal file
|
@ -0,0 +1,16 @@
|
|||
# git ls-files
|
||||
|
||||
> Show information about files in the index and the working tree.
|
||||
> More information: <https://git-scm.com/docs/git-ls-files>.
|
||||
|
||||
- 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`
|
Loading…
Add table
Reference in a new issue