Git - Overview

Introduction


Git is becoming de-facto choice of source code control system for new generation of developers.  Git is based on distributed repositories. It manages the content in terms of snapshots and knows how to apply/rollback the changes between one snapshot to another.

Most used commands 

To track changes or stage changes

git add filename

To track or stage all files under dir1

git add  dir1\

To commit all the changes

git commit -a

To push the changes to remote

git push origin master

References:








Comments

Popular posts from this blog

SQL

Analytics

HIVE