How to ignore .gitignore and list all untracked files?

Member

by jerad , in category: Third Party Scripts , a month ago

How to ignore .gitignore and list all untracked files?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by darrion.kuhn , a month ago

@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.