I'm trying to avoid showing unwanted folder's content (ex:- .settings, .metadata etc ) when i execute 'git status' command. I modified .gitignore file after adding the folder names to it but still I'm getting all these files when I execute git status.
Please help me on this.
You can just remove them with grep -v
if you're only interested not seeing them.