SlideShare ist ein Scribd-Unternehmen logo
1 von 39
git – Basic Crash Course
Introduction
BITS Firefox Community | Lecture Series - Git
DRIVES
Nilay Binjola
Introduction
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Introduction
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Debian/Ubuntu based Linux Distributions
$ apt-get install git
Fedora/Redhat based Linux Distributions
$ yum install git
OpenSUSE
$ zypper install git
Arch Linux
$ pacman -S git
Windows
1. Download latest version (1.9.4) from http://git-scm.com/download/win
2. Run the installer
3. Select “Run Git and included Unix tools from the Windows Command Prompt”
4. Select “Checkout Windows-style, commit Unix-style line endings”
Introduction
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Username and Email
$ git config --global user.name “Nilay Binjola"
$ git config –global user.email “nilaybinjola@gmail.com”
Activate colored messages
$ git config --global color.status auto
$ git config --global color.branch auto
More git configurations settings - http://git-scm.com/book/en/v2/Customizing-Git-Git-
Configuration
And you are all set!
Introduction
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Git has extensive documentation all over the internet. Some of them are:-
1. Pro Git book by Scott Chacon and Ben Straub - http://git-scm.com/book/en/v2
2. Git Reference - http://gitref.org/
3. Git Manual - $ git help <verb>
4. Stack Overflow - http://stackoverflow.com/questions/tagged/git
5. Google – http://www.google.com
“Most images/figures/diagrams in this presentation are taken from [1]”
Introduction
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Git is a distributed revision control system with an emphasis on speed, data integrity, and
support for distributed, non-linear workflows.
• What is Version Control?
• Version control is a system that records changes to a file or set of files over time so
that you can recall specific versions later.
• It allows you to revert files back to a previous state, revert the entire project back
to a previous state, compare changes over time, see who last modified something
that might be causing a problem, who introduced an issue and when, and more.
• Categories of Version Control
1. Local Version Control Systems
2. Centralized Version Control Systems
3. Distributed Version Control Systems
“A VCS generally means that if you screw things up, you can easily recover.”
Introduction
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Local Version Control System
Eg: RCS (MAC OS)
Centralized Version Control System
Eg: CVS, Subversion, Perforce etc.
Introduction
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Eg: Git, Mercurial, Bazaar, DARCS etc.
• Clients check-out entire history of project
from central server instead of just 1
snapshot like CVCS.
• Supports hierarchical models unlike CVCS.
• Allows users to work productively when not
connected to a network.
• Makes most operations faster – No need to
communicate with a central server.
• Non-Linear Workflows – Anyone can be
anything since everyone has the complete
repository.
• Distributed - Protection against data loss.
Basics and Working Principles
BITS Firefox Community | Lecture Series - Git Nilay Binjola
• Git stores the snapshot of the file along with a reference to it.
• If file has not changed, Git does not store file again
• Everything is check-summed before storage using SHA-1 Hash
• Version numbers or commit numbers are first 7 characters of the SHA-1 Hash. Eg:
5610e3b
Basics and Working Principles
BITS Firefox Community | Lecture Series - Git Nilay Binjola
• Git Workflow:-
1. Clone/Fork/Initialise a git repository and checkout a snapshot to Working
Directory
2. Modify Files in the Working Directory
3. Stage the files you want to be committed by adding snapshots of them to staging
area
4. Commit your staged files.
• Git stores all its data in a .git
directory in the root of the project.
• Working Directory – Latest checkout
of the repository along with your
changes.
• Staging Area – Stores information of
what is to be committed next.
• Staging Area a.k.a Index
Commands and Live Demonstration
BITS Firefox Community | Lecture Series - Git Nilay Binjola
git-init
Create an empty git repository or reinitialize an existing one
• Creates a new subdirectory named .git that contains all of your necessary repository
files
• An initial HEAD file that references the HEAD of the master branch is also created.
Commands and Live Demonstration
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Creating a project directory
$ mkdir my-awesome-project
$ cd my-awesome-project
Commands and Live Demonstration
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Initialize a Git Repository using git-init
$ mkdir my-awesome-project
$ cd my-awesome-project
$ git init
Initialized empty Git repository in E:/my-awesome-project/.git/
Nothing here
Repo History
Commands and Live Demonstration
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Start working on the project. In this example, create a file
with some text in it.
$ mkdir my-awesome-project
$ cd my-awesome-project
$ git init
$ echo “My First File” > first.txt
Nothing here
Repo History
Commands and Live Demonstration
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Commands and Live Demonstration
BITS Firefox Community | Lecture Series - Git Nilay Binjola
git-status
Show the working tree status
• Displays paths that have differences between
• The index file and the current HEAD commit.
• The working tree and the index file
• Paths in the working tree that are not tracked by git
Commands and Live Demonstration
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Check status of your git repository using git-status. See
tracked/untracked files and status of modified files.
$ mkdir my-awesome-project
$ cd my-awesome-project
$ git init
$ echo “My First File” > first.txt
$ git status
# On branch master
# Initial commit
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
# first.txt
nothing added to commit but untracked files present (use "git
add" to track)
Nothing here
Repo History
Commands and Live Demonstration
BITS Firefox Community | Lecture Series - Git Nilay Binjola
git-add
Add file contents to the index
• Updates the index using the current content found in the working tree, to prepare the
content staged for the next commit
• Typically adds the current content of existing paths as a whole
Commands and Live Demonstration
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Add the untracked file “first.txt” to the stage area using git-
add.
$ mkdir my-awesome-project
$ cd my-awesome-project
$ git init
$ echo “My First File” > first.txt
$ git status
$ git add first.txt
Nothing here
Repo History
Commands and Live Demonstration
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Check the status of your git repository again and see the
difference.
$ git init
$ echo “My First File” > first.txt
$ git status
$ git add first.txt
$ git status
# On branch master
# Initial commit
# Changes to be committed:
# (use "git rm --cached <file>..." to unstage)
# new file: first.txt
Nothing here
Repo History
Commands and Live Demonstration
BITS Firefox Community | Lecture Series - Git Nilay Binjola
git-commit
Record changes to the repository
• Stores the current contents of the index in a new commit along with a log message from
the user describing the changes.
Commands and Live Demonstration
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Commit your staged file(s) and check status of the git
repository again to observe changes.
$ git add first.txt
$ git commit –m “First Commit”
[master (root-commit) a231f12] First Commit
1 file changed, 0 insertions(+), 0 deletions(-)
create mode 100644 first.txt
$ git status
# On branch master
nothing to commit, working directory clean
a231f12
Repo History
HEAD
Commands and Live Demonstration
BITS Firefox Community | Lecture Series - Git Nilay Binjola
git-log
Show commit logs
Commands and Live Demonstration
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Use git-log to view commits history and commit messages in
chronological order.
$ git commit –m “First Commit”
$ git status
$ git log
commit a231f123102112daf8291894aa404f0c2b8fd5fb
Author: Nilay Binjola <nilaybinjola@gmail.com>
Date: Mon Nov 10 16:26:39 2014 +0530
First Commit a231f12
Repo History
HEAD
Commands and Live Demonstration
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Keep working on project and keep committing work regularly.
$ echo “Second File” > second.txt
$ git add .
$ git commit –m “Second Commit”
$ git log
commit 5df0c533cfd8dac626fef959ee9c0b4560ea07c5
Author: Nilay Binjola <nilaybinjola@gmail.com>
Date: Mon Nov 10 16:36:35 2014 +0530
Second Commit
commit a231f123102112daf8291894aa404f0c2b8fd5fb
Author: Nilay Binjola <nilaybinjola@gmail.com>
Date: Mon Nov 10 16:26:39 2014 +0530
First Commit
a231f12
Repo History
HEAD 5df0c53
Other Commands
BITS Firefox Community | Lecture Series - Git Nilay Binjola
git-diff
Show changes between commits, commit and working tree, etc.
git-rm
Remove files from the working tree and from the index.
git-mv
Move or rename a file, a directory, or a symlink.
git-tag
Create, list, delete or verify a tag object signed with GPG.
git-clone
Clone a repository into a new directory.
Other Commands
BITS Firefox Community | Lecture Series - Git Nilay Binjola
$ git commit --amend
Used to amend the tip of the current branch. The commit you create replaces the current
tip.
$ git reset HEAD <file name>
Unstage a staged file.
$ git checkout -- <file name>
Revert file back to what it looked like when you last committed.
$ git reset –hard <commit>
Will destroy any local modifications. Will revert Working Directory to commit status.
Branching and Merging - Basics
BITS Firefox Community | Lecture Series - Git Nilay Binjola
• Diverge from the main line of development and continue to do work without messing
with that main line.
• New commits are recorded in the history for the current branch, which results in a fork
in the history of the project.
• The git branch command lets you create, list, rename, and delete branches.
• It doesn’t let you switch between branches or put a forked history back together
again.
When you want to add a new feature or fix a bug—no matter how big or how small—you
spawn a new branch to encapsulate your changes.
Branching and Merging - Basics
BITS Firefox Community | Lecture Series - Git Nilay Binjola
A basic project repository commit tree.
Branching and Merging - Basics
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Creating a new branch.
Branching and Merging - Basics
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Committing changes to the new branch “iss53”.
Branching and Merging - Basics
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Checking out a new branch from master (after switching to master) and working on it.
Branching and Merging - Basics
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Merging branch “hotfix” with master.
Branching and Merging - Basics
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Checking out branch “iss53” and working on it.
Branching and Merging - Basics
BITS Firefox Community | Lecture Series - Git Nilay Binjola
Merging branch “iss53” to branch “master”
Branching and Merging - Basics
BITS Firefox Community | Lecture Series - Git Nilay Binjola
All branches merged. New Commit created.
Branching and Merging - Basics
BITS Firefox Community | Lecture Series - Git Nilay Binjola
• Edit Collision - If you changed the same part of the same file differently in the two
branches you’re merging together.
• Choose either one side of the merger or the other.
• Removed File Conflict - one person edits a file, and another person deletes that file in
their branch.
• Use git mergetool for better visualization etc.
Further Reading
BITS Firefox Community | Lecture Series - Git Nilay Binjola
 Practice using dummy repositories
 Read on:-
 Branching and Merging
 Working with Remotes
 Tagging
 Git Hooks
 Distributed Workflows
 Read the Pro Git Community book on their main website
 Fun online git tutorial - https://try.github.io/levels/1/challenges/1
 Start using Git for your projects hosted on Github, BitBucket.
"What Would CVS Not Do?“ – Linus Torvalds

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (20)

Introduction To Git
Introduction To GitIntroduction To Git
Introduction To Git
 
Basic Git Intro
Basic Git IntroBasic Git Intro
Basic Git Intro
 
Git - An Introduction
Git - An IntroductionGit - An Introduction
Git - An Introduction
 
Git training v10
Git training v10Git training v10
Git training v10
 
Introduction git
Introduction gitIntroduction git
Introduction git
 
Github basics
Github basicsGithub basics
Github basics
 
Git and Github Session
Git and Github SessionGit and Github Session
Git and Github Session
 
Intro to git and git hub
Intro to git and git hubIntro to git and git hub
Intro to git and git hub
 
A Practical Introduction to git
A Practical Introduction to gitA Practical Introduction to git
A Practical Introduction to git
 
Git basics to advance with diagrams
Git basics to advance with diagramsGit basics to advance with diagrams
Git basics to advance with diagrams
 
Github - Git Training Slides: Foundations
Github - Git Training Slides: FoundationsGithub - Git Training Slides: Foundations
Github - Git Training Slides: Foundations
 
Git Introduction Tutorial
Git Introduction TutorialGit Introduction Tutorial
Git Introduction Tutorial
 
Git and git flow
Git and git flowGit and git flow
Git and git flow
 
Git basics
Git basicsGit basics
Git basics
 
Git One Day Training Notes
Git One Day Training NotesGit One Day Training Notes
Git One Day Training Notes
 
Introduction to Git
Introduction to GitIntroduction to Git
Introduction to Git
 
GitHub Basics - Derek Bable
GitHub Basics - Derek BableGitHub Basics - Derek Bable
GitHub Basics - Derek Bable
 
Introduction to Git and Github
Introduction to Git and GithubIntroduction to Git and Github
Introduction to Git and Github
 
Git & GitLab
Git & GitLabGit & GitLab
Git & GitLab
 
Git flow Introduction
Git flow IntroductionGit flow Introduction
Git flow Introduction
 

Ähnlich wie Git - Basic Crash Course

Source Code Management with Git
Source Code Management with GitSource Code Management with Git
Source Code Management with Git
Things Lab
 
Git Workshop : Getting Started
Git Workshop : Getting StartedGit Workshop : Getting Started
Git Workshop : Getting Started
Wildan Maulana
 
Beginner's Guide to Version Control with Git
Beginner's Guide to Version Control with GitBeginner's Guide to Version Control with Git
Beginner's Guide to Version Control with Git
Robert Lee-Cann
 
Git 入门与实践
Git 入门与实践Git 入门与实践
Git 入门与实践
Terry Wang
 
Git 入门 与 实践
Git 入门 与 实践Git 入门 与 实践
Git 入门 与 实践
Terry Wang
 

Ähnlich wie Git - Basic Crash Course (20)

Introduction to Git and Github
Introduction to Git and Github Introduction to Git and Github
Introduction to Git and Github
 
390a gitintro 12au
390a gitintro 12au390a gitintro 12au
390a gitintro 12au
 
Git introduction
Git introductionGit introduction
Git introduction
 
sample.pptx
sample.pptxsample.pptx
sample.pptx
 
Git 101
Git 101Git 101
Git 101
 
Source Code Management with Git
Source Code Management with GitSource Code Management with Git
Source Code Management with Git
 
Mini git tutorial
Mini git tutorialMini git tutorial
Mini git tutorial
 
Git training (basic)
Git training (basic)Git training (basic)
Git training (basic)
 
git.ppt.pdf
git.ppt.pdfgit.ppt.pdf
git.ppt.pdf
 
Git session Dropsolid.com
Git session Dropsolid.comGit session Dropsolid.com
Git session Dropsolid.com
 
Introduction to Git
Introduction to GitIntroduction to Git
Introduction to Git
 
Git Workshop : Getting Started
Git Workshop : Getting StartedGit Workshop : Getting Started
Git Workshop : Getting Started
 
Beginner's Guide to Version Control with Git
Beginner's Guide to Version Control with GitBeginner's Guide to Version Control with Git
Beginner's Guide to Version Control with Git
 
Version control with GIT
Version control with GITVersion control with GIT
Version control with GIT
 
The Basics of Open Source Collaboration With Git and GitHub
The Basics of Open Source Collaboration With Git and GitHubThe Basics of Open Source Collaboration With Git and GitHub
The Basics of Open Source Collaboration With Git and GitHub
 
Git slides
Git slidesGit slides
Git slides
 
Git 入门与实践
Git 入门与实践Git 入门与实践
Git 入门与实践
 
Git
GitGit
Git
 
GitHub Event.pptx
GitHub Event.pptxGitHub Event.pptx
GitHub Event.pptx
 
Git 入门 与 实践
Git 入门 与 实践Git 入门 与 实践
Git 入门 与 实践
 

Kürzlich hochgeladen

Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Medical / Health Care (+971588192166) Mifepristone and Misoprostol tablets 200mg
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
masabamasaba
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
masabamasaba
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
VictorSzoltysek
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
masabamasaba
 

Kürzlich hochgeladen (20)

Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
 
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
%+27788225528 love spells in Boston Psychic Readings, Attraction spells,Bring...
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
WSO2Con2024 - From Code To Cloud: Fast Track Your Cloud Native Journey with C...
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
%+27788225528 love spells in Huntington Beach Psychic Readings, Attraction sp...
 
tonesoftg
tonesoftgtonesoftg
tonesoftg
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
Devoxx UK 2024 - Going serverless with Quarkus, GraalVM native images and AWS...
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 

Git - Basic Crash Course

  • 1. git – Basic Crash Course
  • 2. Introduction BITS Firefox Community | Lecture Series - Git DRIVES Nilay Binjola
  • 3. Introduction BITS Firefox Community | Lecture Series - Git Nilay Binjola
  • 4. Introduction BITS Firefox Community | Lecture Series - Git Nilay Binjola Debian/Ubuntu based Linux Distributions $ apt-get install git Fedora/Redhat based Linux Distributions $ yum install git OpenSUSE $ zypper install git Arch Linux $ pacman -S git Windows 1. Download latest version (1.9.4) from http://git-scm.com/download/win 2. Run the installer 3. Select “Run Git and included Unix tools from the Windows Command Prompt” 4. Select “Checkout Windows-style, commit Unix-style line endings”
  • 5. Introduction BITS Firefox Community | Lecture Series - Git Nilay Binjola Username and Email $ git config --global user.name “Nilay Binjola" $ git config –global user.email “nilaybinjola@gmail.com” Activate colored messages $ git config --global color.status auto $ git config --global color.branch auto More git configurations settings - http://git-scm.com/book/en/v2/Customizing-Git-Git- Configuration And you are all set!
  • 6. Introduction BITS Firefox Community | Lecture Series - Git Nilay Binjola Git has extensive documentation all over the internet. Some of them are:- 1. Pro Git book by Scott Chacon and Ben Straub - http://git-scm.com/book/en/v2 2. Git Reference - http://gitref.org/ 3. Git Manual - $ git help <verb> 4. Stack Overflow - http://stackoverflow.com/questions/tagged/git 5. Google – http://www.google.com “Most images/figures/diagrams in this presentation are taken from [1]”
  • 7. Introduction BITS Firefox Community | Lecture Series - Git Nilay Binjola Git is a distributed revision control system with an emphasis on speed, data integrity, and support for distributed, non-linear workflows. • What is Version Control? • Version control is a system that records changes to a file or set of files over time so that you can recall specific versions later. • It allows you to revert files back to a previous state, revert the entire project back to a previous state, compare changes over time, see who last modified something that might be causing a problem, who introduced an issue and when, and more. • Categories of Version Control 1. Local Version Control Systems 2. Centralized Version Control Systems 3. Distributed Version Control Systems “A VCS generally means that if you screw things up, you can easily recover.”
  • 8. Introduction BITS Firefox Community | Lecture Series - Git Nilay Binjola Local Version Control System Eg: RCS (MAC OS) Centralized Version Control System Eg: CVS, Subversion, Perforce etc.
  • 9. Introduction BITS Firefox Community | Lecture Series - Git Nilay Binjola Eg: Git, Mercurial, Bazaar, DARCS etc. • Clients check-out entire history of project from central server instead of just 1 snapshot like CVCS. • Supports hierarchical models unlike CVCS. • Allows users to work productively when not connected to a network. • Makes most operations faster – No need to communicate with a central server. • Non-Linear Workflows – Anyone can be anything since everyone has the complete repository. • Distributed - Protection against data loss.
  • 10. Basics and Working Principles BITS Firefox Community | Lecture Series - Git Nilay Binjola • Git stores the snapshot of the file along with a reference to it. • If file has not changed, Git does not store file again • Everything is check-summed before storage using SHA-1 Hash • Version numbers or commit numbers are first 7 characters of the SHA-1 Hash. Eg: 5610e3b
  • 11. Basics and Working Principles BITS Firefox Community | Lecture Series - Git Nilay Binjola • Git Workflow:- 1. Clone/Fork/Initialise a git repository and checkout a snapshot to Working Directory 2. Modify Files in the Working Directory 3. Stage the files you want to be committed by adding snapshots of them to staging area 4. Commit your staged files. • Git stores all its data in a .git directory in the root of the project. • Working Directory – Latest checkout of the repository along with your changes. • Staging Area – Stores information of what is to be committed next. • Staging Area a.k.a Index
  • 12. Commands and Live Demonstration BITS Firefox Community | Lecture Series - Git Nilay Binjola git-init Create an empty git repository or reinitialize an existing one • Creates a new subdirectory named .git that contains all of your necessary repository files • An initial HEAD file that references the HEAD of the master branch is also created.
  • 13. Commands and Live Demonstration BITS Firefox Community | Lecture Series - Git Nilay Binjola Creating a project directory $ mkdir my-awesome-project $ cd my-awesome-project
  • 14. Commands and Live Demonstration BITS Firefox Community | Lecture Series - Git Nilay Binjola Initialize a Git Repository using git-init $ mkdir my-awesome-project $ cd my-awesome-project $ git init Initialized empty Git repository in E:/my-awesome-project/.git/ Nothing here Repo History
  • 15. Commands and Live Demonstration BITS Firefox Community | Lecture Series - Git Nilay Binjola Start working on the project. In this example, create a file with some text in it. $ mkdir my-awesome-project $ cd my-awesome-project $ git init $ echo “My First File” > first.txt Nothing here Repo History
  • 16. Commands and Live Demonstration BITS Firefox Community | Lecture Series - Git Nilay Binjola
  • 17. Commands and Live Demonstration BITS Firefox Community | Lecture Series - Git Nilay Binjola git-status Show the working tree status • Displays paths that have differences between • The index file and the current HEAD commit. • The working tree and the index file • Paths in the working tree that are not tracked by git
  • 18. Commands and Live Demonstration BITS Firefox Community | Lecture Series - Git Nilay Binjola Check status of your git repository using git-status. See tracked/untracked files and status of modified files. $ mkdir my-awesome-project $ cd my-awesome-project $ git init $ echo “My First File” > first.txt $ git status # On branch master # Initial commit # Untracked files: # (use "git add <file>..." to include in what will be committed) # first.txt nothing added to commit but untracked files present (use "git add" to track) Nothing here Repo History
  • 19. Commands and Live Demonstration BITS Firefox Community | Lecture Series - Git Nilay Binjola git-add Add file contents to the index • Updates the index using the current content found in the working tree, to prepare the content staged for the next commit • Typically adds the current content of existing paths as a whole
  • 20. Commands and Live Demonstration BITS Firefox Community | Lecture Series - Git Nilay Binjola Add the untracked file “first.txt” to the stage area using git- add. $ mkdir my-awesome-project $ cd my-awesome-project $ git init $ echo “My First File” > first.txt $ git status $ git add first.txt Nothing here Repo History
  • 21. Commands and Live Demonstration BITS Firefox Community | Lecture Series - Git Nilay Binjola Check the status of your git repository again and see the difference. $ git init $ echo “My First File” > first.txt $ git status $ git add first.txt $ git status # On branch master # Initial commit # Changes to be committed: # (use "git rm --cached <file>..." to unstage) # new file: first.txt Nothing here Repo History
  • 22. Commands and Live Demonstration BITS Firefox Community | Lecture Series - Git Nilay Binjola git-commit Record changes to the repository • Stores the current contents of the index in a new commit along with a log message from the user describing the changes.
  • 23. Commands and Live Demonstration BITS Firefox Community | Lecture Series - Git Nilay Binjola Commit your staged file(s) and check status of the git repository again to observe changes. $ git add first.txt $ git commit –m “First Commit” [master (root-commit) a231f12] First Commit 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 first.txt $ git status # On branch master nothing to commit, working directory clean a231f12 Repo History HEAD
  • 24. Commands and Live Demonstration BITS Firefox Community | Lecture Series - Git Nilay Binjola git-log Show commit logs
  • 25. Commands and Live Demonstration BITS Firefox Community | Lecture Series - Git Nilay Binjola Use git-log to view commits history and commit messages in chronological order. $ git commit –m “First Commit” $ git status $ git log commit a231f123102112daf8291894aa404f0c2b8fd5fb Author: Nilay Binjola <nilaybinjola@gmail.com> Date: Mon Nov 10 16:26:39 2014 +0530 First Commit a231f12 Repo History HEAD
  • 26. Commands and Live Demonstration BITS Firefox Community | Lecture Series - Git Nilay Binjola Keep working on project and keep committing work regularly. $ echo “Second File” > second.txt $ git add . $ git commit –m “Second Commit” $ git log commit 5df0c533cfd8dac626fef959ee9c0b4560ea07c5 Author: Nilay Binjola <nilaybinjola@gmail.com> Date: Mon Nov 10 16:36:35 2014 +0530 Second Commit commit a231f123102112daf8291894aa404f0c2b8fd5fb Author: Nilay Binjola <nilaybinjola@gmail.com> Date: Mon Nov 10 16:26:39 2014 +0530 First Commit a231f12 Repo History HEAD 5df0c53
  • 27. Other Commands BITS Firefox Community | Lecture Series - Git Nilay Binjola git-diff Show changes between commits, commit and working tree, etc. git-rm Remove files from the working tree and from the index. git-mv Move or rename a file, a directory, or a symlink. git-tag Create, list, delete or verify a tag object signed with GPG. git-clone Clone a repository into a new directory.
  • 28. Other Commands BITS Firefox Community | Lecture Series - Git Nilay Binjola $ git commit --amend Used to amend the tip of the current branch. The commit you create replaces the current tip. $ git reset HEAD <file name> Unstage a staged file. $ git checkout -- <file name> Revert file back to what it looked like when you last committed. $ git reset –hard <commit> Will destroy any local modifications. Will revert Working Directory to commit status.
  • 29. Branching and Merging - Basics BITS Firefox Community | Lecture Series - Git Nilay Binjola • Diverge from the main line of development and continue to do work without messing with that main line. • New commits are recorded in the history for the current branch, which results in a fork in the history of the project. • The git branch command lets you create, list, rename, and delete branches. • It doesn’t let you switch between branches or put a forked history back together again. When you want to add a new feature or fix a bug—no matter how big or how small—you spawn a new branch to encapsulate your changes.
  • 30. Branching and Merging - Basics BITS Firefox Community | Lecture Series - Git Nilay Binjola A basic project repository commit tree.
  • 31. Branching and Merging - Basics BITS Firefox Community | Lecture Series - Git Nilay Binjola Creating a new branch.
  • 32. Branching and Merging - Basics BITS Firefox Community | Lecture Series - Git Nilay Binjola Committing changes to the new branch “iss53”.
  • 33. Branching and Merging - Basics BITS Firefox Community | Lecture Series - Git Nilay Binjola Checking out a new branch from master (after switching to master) and working on it.
  • 34. Branching and Merging - Basics BITS Firefox Community | Lecture Series - Git Nilay Binjola Merging branch “hotfix” with master.
  • 35. Branching and Merging - Basics BITS Firefox Community | Lecture Series - Git Nilay Binjola Checking out branch “iss53” and working on it.
  • 36. Branching and Merging - Basics BITS Firefox Community | Lecture Series - Git Nilay Binjola Merging branch “iss53” to branch “master”
  • 37. Branching and Merging - Basics BITS Firefox Community | Lecture Series - Git Nilay Binjola All branches merged. New Commit created.
  • 38. Branching and Merging - Basics BITS Firefox Community | Lecture Series - Git Nilay Binjola • Edit Collision - If you changed the same part of the same file differently in the two branches you’re merging together. • Choose either one side of the merger or the other. • Removed File Conflict - one person edits a file, and another person deletes that file in their branch. • Use git mergetool for better visualization etc.
  • 39. Further Reading BITS Firefox Community | Lecture Series - Git Nilay Binjola  Practice using dummy repositories  Read on:-  Branching and Merging  Working with Remotes  Tagging  Git Hooks  Distributed Workflows  Read the Pro Git Community book on their main website  Fun online git tutorial - https://try.github.io/levels/1/challenges/1  Start using Git for your projects hosted on Github, BitBucket. "What Would CVS Not Do?“ – Linus Torvalds