Intellipaat Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in DevOps and Agile by (19.4k points)

How do I do a git status so it doesn't display untracked files without using .gitignore? I want to get modification status information on tracked files only.

1 Answer

0 votes
by (27.5k points)

Since you want to perform git status so it doesn't display untracked files without using .gitignore, this following command can be referred 

git status --untracked-files=no

Browse Categories

...