You are on page 1of 1

Initialization : Repository

Clone: Local Copy


Checking Out : Locking copy for exclusive use
Braching : Allowing a set of files to be developed concurrently
Merging : merging different Branch code

git --version
To Create Configuration
--------------------------------------------------------git config --global user.name "Root user"
git config --global user.email "root@localhost"
--------------------------------------------------------cat .gitconfig
[user]
name = Root user
email = root@localhost
--------------------------------------------------------git config --list
user.name=Root user
user.email=root@localhost
---------------------------------------------------------

You might also like