I know this question has been asked before but the answers didn't seem to work for me. But seemingly there's something I don't get yet.
I initialized my home directory so as to have my configs available to clone to VMs and so on.
My .git/info/exclude looks as follows:
/*
!.config/nvim*
!.config/qutebrowser/*
!.config/htop/*
!.config/emacs/*
!.config/aqemu/*
!.config/dconf/*
!.vim*
!.bash*
-> git add .
Git status output:
Changes to be committed:
(use "git rm --cached <file>..." to unstage)
new file: .bash_aliases
new file: .bash_helper
new file: .bash_history
new file: .bash_logout
new file: .bashrc
new file: .vim/.netrwhist
new file: .viminfo
new file: .vimrc
why are my .config/x/* directories not added ? Thanks in advance and sorry if I overlooked something on the previous posts about similar topics :)