I have a fairly large android studio project and I now want to commit the entire project to git and then to github but I'm stuck! I know how to add a file to the staging area and committing it or committing all modified files but how do I commit an entire project to git instead of committing files singly?
Thank you for your help in advance! :)
git init
(you should change your working directory to project main folder)git add .
git commit -m "First project commit"
git remote add origin <remote repository url provided by github>
git push -u origin master