Create alias on .zshrc
alias dfl="g --git-dir=$HOME/.dotfiles/ --work-tree=$HOME"
Create the folder to store the actual files and push them to github
mkdir ~/.dotfiles
dfl init
dfl branch -M main
dfl config --local status.showUntrackedFiles no
dfl add "FILE"
dfl commit -m "message"
dfl remote add origin [email protected]:thiphariel/dotfiles.git
dfl push origin main