mkdir new-project
cd new-project
git init
echo "# new-project" > README.md
git add README.md
git commit -m "init"
git checkout -b development
echo "Step-by-step instructions for the 'new-project'" >> README.md
git add README.md
git commit -m "Add instructions to README.md"
git checkout main
git merge development
git remote add origin <remote-repository-URL>
git push -u origin main