I'm not so familiar with CLI git so I use Atlassian's Sourcetree to manage my Git.
However, I've found out that Sourcetree doesn't recognize .gitignore's directory with tailing asterisk(*).
i.e, .vscode/ is ignored while .vscode/* is not ignored.
Items like .vscode/settings.json keep appearing in the unstaged area.
As far as I know, * is a wildcard for any file/subdirectory in the directory so this should not happen.
My .gitignore extension creates all the items like /* so now I have to manually change all that to / to avoid staging what I don't wanna commit.
I can't test out if this is a normal behavior in any Git applications or the native git itself because Sourcetree is the only Git management I know of. Is it something that would also happen in traditional CLI git?
@chlwovlfgit be default uses globbing patterns (https://linux.die.net/man/7/glob)
There can be two reasons with SourceTree behaviour,
# git rm --cached -r .
# git add .
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.