Answers for "what does git add . mean"

12

git add

//to add a single file
git add <FILE_NAME>

//to add all changed files
git add -A
Posted by: Guest on April-22-2020
0

git add

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
Posted by: Guest on January-20-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language