892
Storing my configs in #git (#gitlab, because its open - #github is not). Dozens of repos. I recommend you. And I love that Gitlab creates a repo if it does not exist, private by default - so I can #backup my another preferences folder without touching a web browser.
As you see - I have git aliases, link to my Bash config file with them https://gitlab.com/vitaly-zdanevich-configs/bash/-/blob/master/90-aliases.bash
alias g=git
alias s='git status'
alias d='git diff'
alias ga="git add --patch"
alias m='git commit --message'
alias am='git commit --all --message' # `git commit -am` or `g c -am`
alias push='git push'
alias pull='git pull'
alias log='git log'
alias lo='git log --pretty="%C(Yellow)%h %C(reset)%ad (%C(Green)%cr%C(reset))%x09 %C(Cyan)%an: %C(reset)%s" --date=short prod..master'
