Thursday 15 May 2014

Setting Up GIT (git configuration on loca PC with the server)


Some Simple steps for GIT cloning and installation:

  • sudo apt-get install git
  • make a saparate folder for code
  • cd into that
  • git config --global user.name "XYZ" //user name of GIT account
  • git config --global user.email "XYZ@gmail.com" //mail  which is registered with  GIT account
    • NOTE:: each user have a unique user/mailid ., other wise git conflict will be there while git activities.
  • git clone gitaccountwebpage.com/git/repository_name/   //clone to repository of git directory.
  • once it done go to newly created directory synced with the server  (into your craeted directory).

GIt cloning Done


check basic commands like pull push add....

learn basics of GIT (http://rogerdudler.github.io/git-guide/)

No comments:

Post a Comment