start with Git
Steps to start Github.com
open the terminal
in a local directory, say
git init
as like
~/projects/first_repo $ git init
(before this step, install “git” on your laptop)
and then, say
git remote add origin repo_url
with the repo URL (before this, open a github.com account & get a repo)
then it worked. after that, whenever edit something on the directory (when have something to commit) use
git status git add . git commit -m "description"
and when say finally,
git push
then it asks login ID & password at github.com