@jerad
To list all untracked files in a Git repository, you can use the following command:
1
|
git ls-files --others --exclude-standard |
This command will list all untracked files in the repository, regardless of what is specified in the .gitignore
file. It will display a list of all untracked files in the current directory and its subdirectories.