Meu .gitignore
arquivo está instruindo para ignorar o ../../.aws/
diretório:
$ cat .gitignore
coredumps/
../../.aws/
.*.sw*
*bak
*log
Infelizmente, essa instrução é ignorada:
$ git status | head -6
# On branch main
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
#
# ../../.aws/
# ../../.bash_history
Como devo alterar my .gitignore
para que ../../.aws/
seja excluído da git status
saída?