Thursday, November 29, 2018

git


Git Hub

It is an open source which can be used by the people all over the world.Git Hub is a web-based  service using Git. It is  used for computer code. It offers all of the distributed version control and source code management functionality of Git.



Commands to install Git hub on PC

  • Installing github for linux : type terminal"sudo apt-get install git "
  • Configurating github :
                 git config --global user.name "user_name"

                 git config --global user.email "email_id"



 Commands on turminal to run git hub     

1.git init html    
2.git add *
3.git status
4.git commit -m"description"
5.git remote add origin
6.git remote -v
7.git push -u origin master

No comments:

Post a Comment

React React  is a JavaScript library for building user interfaces created by Facebook. It is maintained by Facebook and a community of...