mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-20 08:50:36 +00:00
Update cheatsheets
This commit is contained in:
25
git-ls-files
Normal file
25
git-ls-files
Normal file
@@ -0,0 +1,25 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, common]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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`
|
||||
|
||||
- Show untracked files, not ignored:
|
||||
|
||||
`git ls-files --others --exclude-standard`
|
||||
Reference in New Issue
Block a user