This is my first in github.
This file is some information on using github.
See https://help.github.com/articles/create-a-repo
-
Create Repository
-
Create file
create a dir with the same name of repository
mkdir dirname
git init
touch filename
- Commit file
git add filename
git commit -m "add filename"
- Push commit
git remote add origin https://github.com/username/Hello-World.git
git push origin master