how to upload your code to git directory code example
Example 1: git push current project to master
git init
git add .
git commit -m 'First commit'
git remote add origin <remote repository URL>
git push origin master
Example 2: how to add an existing project to github
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