π‘Git
The Basics
Github flow
Model development and version control in article
Main CLI commands
git --versiongit configgit config --global user.name = 'Klenin Maksim';git config --global user.email = 'maksim_klenin_99@mail.ru';git initgit add .git commit -m "Commit"git loggit statusgit diffgit reset --hard HEADgit show aa380fa8cc89695a3921114efc4dcde92ee09284git checkout -b new-user-featuregit merge new-user-featuregit branch -d new-user-featuregit resetgit pull
Logs
Beautiful log:
git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --branches"
git lgDigging Deeper
Last updated