I am new to Github and want to setup a account for my project that I will be writing it in Ruby on Rails. I am using Virtual Box and set my VM OS on Ubuntu. I have created a Github account and a new Repo for my project test. These are the steps I went through so far:
cd test
git config --global user.name ’My Name’
git config --global user.email ’Myemailaddress’
git init
touch README
add README
git remote add origin git@github.com:myusername/myreponame.git
git push origin master
till these steps everything is fine and then I created my app with
rails new test -T
Now after this step I am really not sure what to do next. Should I add all my files and directories to Github Repo or only those that I am going to modify. And what is the git syntax to add all files and directories together? How to commit and save the commit? I really appreciate any suggestion...