How to add files into a new empty repository 1. go to the folder where local files are present which you want to add 2.git init 3.git add . 4.git commit -m "your message" 5.git remote add origin "your url from the respository" 6.git push origin master how to push after some changes 1. go inside Textyfi folder 2. git status 3. git add . 4. git commit -m "You changes" 5. git push