Q:

git add

rm -rf .git
0
//to add a single file
git add <file>

//to add all changed files
git add -A
12
/*to add all the files in staging area at once*/
git add .
4
git commit -a -m "msg"
1
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/Leonuch/flex.git
git push -u origin master
0
git add <file> or you can do git add -A to add all files
1

New to Communities?

Join the community