GitHub Project Setup Follow the steps below to initialize your repository and push your first commit. Step-by-Step Commands (Copy one by one) echo "# kk" >> README.md git init git add README.md git commit -m "first commit" git branch -M main git remote add origin https://github.com git push -u origin main