sujeeth12 / Git-Commands

Change this baby

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

#Git commands

Creating a repository online for the 1st time

$ README.md
$ git init
$ git add README.md
$ git commit -m "first commit"
$ git remote add origin https://github.com/sujeeth12/Git-Commands.git
$ git push -u origin master
# put in username and password

When adding to ur respository online with changes

$ git add README.md
$ git commit -m 'what has changed'
$ git push
# put in username and password

About

Change this baby