xxxxxxxxxx
//to add file to the repository
1. git add yourFilePath
//if you want to add all file then
2. git add .
xxxxxxxxxx
//to add a single file
git add <FILE_NAME>
//to add all changed files
git add -A
xxxxxxxxxx
echo "# SpringSecurity" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/dollarkid1/SpringSecurity.git
git push -u origin main
xxxxxxxxxx
//to add file to the repository
1. git add youFilePath
//if you want to add all file then
2. git add .
xxxxxxxxxx
git remote add origin https://github.com/Kabuye-Rogers256/ubey.git
git branch -M main
git push -u origin main
xxxxxxxxxx
echo "# py_demo" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/demoname/py_demo.git
git push -u origin main
xxxxxxxxxx
git status
git add .
git commit -m "describe what you did to the code in here in present tense"