# Go into your existing directory and run below commands
cd docker-spring-boot
echo "# docker-spring-boot" >> README.md
git init
git add -A
git commit -m "first commit"
git branch -M master
git remote add origin https://github.com/devopsmaster/docker-spring-boot.git
git push -u origin master
#How to push a repo to an existing
git init
git add .
git config --global user.email "<your-github-email>" && git config --global user.name "<your-githb-username>"
git commit -m "<>"
git remote add origin <repohttps>
git remote -v //to confirm
git branch main master -f && git checkout main //'do this if gits default branch is master'
git push origin main -f
git init
git add -A
git commit -m "first commit"
git branch -M master
git remote add origin https://github.com/devopsmaster/docker-spring-boot.git
git push -u origin master
cd docker-spring-boot
echo "# docker-spring-boot" >> README.md
git init
git add -A
git commit -m "first commit"
git branch -M master
git remote add origin https://github.com/devopsmaster/docker-spring-boot.git
git push -u origin master