https://habr.com/ru/articles/432420/
git log --oneline --graph main | less git log --oneline --graph feature/2 | less git log --oneline --graph feature/1 | less
git branch -a
git branch
git checkout feature/2 git checkout feature/1 git checkout main
git push origin --delete feature/2 git push origin --delete feature/1
git branch -d feature/1 git branch -d feature/2
git branch -D feature/1
git pull origin main git pull origin feature/2 git pull origin feature/1
git add . git commit -m "update lessons 4-6 readme" git push -u origin feature/1 git push -u origin main git push -u origin feature/2
git status
git checkout main git merge feature/1 -m "Merge feature/1 into main" git push -u origin main