mkdir new-project
cd new-project
git init
touch README.md
git add README.md
git commit -m "init"
git checkout -b development
8. Додайте інструкцію до файлу "README.md" і підготуйте їх до коміту. Закомітьте зміни у гілці "development" з повідомленням про коміт.
git add README.md
git commit -m "Add instructions to README"
git checkout main
git merge development
git status
git remote add origin <GitHub repo URL>
git push -u origin main