wtr
Full Member level 5
Hello all,
I'm familiar with
Filter to show no untracked files (i.e only tracked)
Filter to show only tracked files ending with .txt
What I want to be able to do is
However this gave me nothing.
I'd greatly appreciate any advice
FYI.
I know I could git status >> a.txt then vim into a.txt and :g/searchstring/d
But I don't want to be dependant on other tools/applications.
Regards,
I'm familiar with
Filter to show no untracked files (i.e only tracked)
Code:
git status -uno
Filter to show only tracked files ending with .txt
Code:
git status *.txt -uno
What I want to be able to do is
I tried using a regexp which did not match log -> ^.*\.(?!log$)[^.]+$Filter to NOT show files of type log
Code:
git status ^.*\.(?!log$)[^.]+$ -uno
I'd greatly appreciate any advice
FYI.
I know I could git status >> a.txt then vim into a.txt and :g/searchstring/d
But I don't want to be dependant on other tools/applications.
Regards,