python -m venv .app-env
.\.app-venv\Scripts\activate
which python
python --version
pip list
.app-venv\Scripts\python -m pip install --upgrade pip
pip freeze
pip freeze > packages.txt
git config --list
git config --global user.name "display-name"
git config --global user.email "github-email"
git config --global http.sslbackend schannel
git config --global http.sslbackend openssl
git config --global --list
git config --local --list
SSH config file to setup and use one or more github account(s)
# Personal github account ~ uses public key
Host gh_personal
HostName github.com
PreferredAuthentications publickey
IdentityFile ~/.ssh/gh_personal
# Work github account ~ uses public key