Git
My git repository
Setup git on a new system:
git config --global user.name "Firstname Lastname"
git config --global user.email "username@myEmail.com"
git config --global color.ui true
git config --global credential.helper store
Add and push stuff to github
git add filename
git commit -m "first commit"
git remote add origin https://github.com/Kirzem/dotfiles.git
git push -u origin main
Pull files from repository
cd <repository directory>
git pull -v
Clone from a repository
git clone https://github.com/Kirzem/dotfiles