Git hub is a web based hosting service for version control using git.Git hub is a project based management system.It is a good platform for the developers.Git hub is a SCM(Source Code Management.
Now we can go through the git hub installing and coding.
1) Installing a git hub in a Linux (in Linux all coding are followed in terminal)
sudo apt-get install git
2)Configuring git hub
When we completed our installing after that we should have to configure our account as follows
get config -- global user.name "user name"
get config -- global user.email "email id" once we configured our account no need to configure each time.
Mainly seven steps are available to push the files in to git hub
1)git<>init
2)git<>add<>./*
3)git<>status
4)git<>commit<>-m<>detail
5)git<>remote<>add<>origin<>url
6)git<>remote<>-v
7)git<>push<>-u<>origin<>master
Comments
Post a Comment