...
No Format |
---|
nano -c .gitignore ; find . -not -path './.git/*' | git check-ignore -v --stdin |
Check if Files are tracked:
No Format |
---|
git ls-files **/* |
Note: do NOT place this in .git , it can go anywhere, but my assumption is it's only respected downstream of its location, so the root dir makes most sense to me.
...