GIT
  • What is a Version Control System ?
    • How Software would have been developed before '70s?
    • Expectations of a tool
    • Generation of Version Control System
    • The BitKeeper-Git-Mercurial Saga : How a License Agreement Change Shaped the Open-Source World
    • Mercurial was invented by andrew, then why Linus needs to create GIT
  • Git Installation and Initial Configs
  • Basic Terminologies
  • Q1 - Initialize a Repository and Basic Configurations
  • Q2 - Adding and Staging Files
  • Ways to Exclude Files in GIT ?
Powered by GitBook
On this page

Git Installation and Initial Configs

PreviousMercurial was invented by andrew, then why Linus needs to create GITNextBasic Terminologies

Last updated 1 year ago

For Installation:

For Initial Setup:

Local:

git config user.name "Syed Jafer"

git config user.email contact.syedjafer@gmail.com

Global

git config --global user.name "Syed Jafer"

git config --global user.email contact.syedjafer@gmail.com

Git - Installing Git
Logo