SlideShare a Scribd company logo
1 of 42
Download to read offline
Git
An intro to Git Source Control Management
What is Git?

Distributed version control system
Linus Torvalds - to track linux kernel development
Free and open source
Designed to handle small/large projects with speed and efficiency
Fast branching and merging
Why source control?
Faster development
Archive of all code changes over time
Compare changes and revert to old release
Accountability
Conserve disk space
Good for you
Distributed vs Centralized
The Basics
Installing git
• To initialize git directory
•   $ git init




• Start version controlling existing files
•   $ git add *.php *.inc *.html *.tpl

•   $ git commit -m ‘Initial project version’




• Cloning an existing repository
•   $ git clone ssh://clickindia@192.168.0.77/home/clickindia/public_html/clickindia
Basic git workflow




• You modify files in your working directory
• You stage files adding snapshot of them to staging area
• You do a commit which takes the files in staging area and
 stores the snapshot permanently
Changes in repository
To check status of your files
Modifying files
Tracking new files
Removing files
Staging modified files
Committing files
Ignoring files
Example of gitignore
$ cat .gitignore
 *.[oa]
 *~
 *.a       # no .a files
 !lib.a    # but do track lib.a, even though you're ignoring .a files above
 /TODO     # only ignore the root TODO file, not subdir/TODO
 build/    # ignore all files in the build/ directory
 doc/*.txt # ignore doc/notes.txt, but not doc/server/arch.txt
Viewing staged and
    unstaged changes
git status
git diff   (Compares working directory with staging area)


git diff --staged
git diff HEAD
git diff v1.0 v1.1
git diff master adposting
Branching
$ git add README test.rb LICENSE
$ git commit -m 'initial commit of my project'




    Created on commit              Created on add
Branching
Branching
Creating new branch
$ git branch testing
Current branch
Switching branch
$ git checkout testing
Significance of branch
$ vim test.php
$ git commit -am “made a change”
Significance of branch
$ git checkout master
Significance of branch
$ vim test.php
$ git commit -am “made a change”
Basic branching and merging
• Create a new feature branch
• Do some work in that branch
Critical issue in production
• Revert back to production branch
• Create a new branch to add the hotfix
• After testing, merge the hotfix branch and push to
  production

• Switch back to your original issue and continue
Basic branching and merging


$ git checkout -b iss53
Switched to a new branch "iss53"
Basic branching and merging
$ vi index.html
$ git commit -a -m 'added a new footer [issue 53]'
Basic branching and merging
Issue in production
$ git checkout master
Switched to branch “master”
$ git checkout -b ‘hotfix’
Switched to a new branch “hotfix”
$ vim index.html
$ git commit -am ‘fixed a broken email address’
[hotfix]: created 3a0874c: "fixed the broken email address"
 1 files changed, 0 insertions(+), 1 deletions(-)
Basic branching and merging
$ git checkout master
$ git merge --no-ff hotfix
Updating f42c576..3a0874c
 README |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)




 $ git branch -d hotfix
 Deleted branch hotfix (3a0874c).
Basic branching and merging
$ git checkout iss53
Switched to branch "iss53"
$ vim index.html
$ git commit -a -m 'finished the new footer [issue 53]'
[iss53]: created ad82d7a: "finished the new footer [issue 53]"
 1 files changed, 1 insertions(+), 0 deletions(-)
Basic branching and merging
$ git checkout master
$ git merge iss53
Merge made by recursive.
 README |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)
Basic branching and merging




$ git branch -d iss53
Branch management

$   git   branch                 #   Shows all the active branches
$   git   branch   -v            #   Shows last commit on each branch
$   git   branch   --merged      #   Shows which branches are merged with the branch you are on
$   git   branch   --no-merged   #   Shows all branches that contain work you haven’t merged
$   git   branch   -d testing    #   To delete a branch. Will fail if the branch is not yet merged
Remote branches
• Remote branches are references to the state
 of branches on your remote repositories
Remote branches
Remote branches
$ git fetch origin     # Fetches any data you don’t have from remote ‘origin’ repository
$ git fetch origin master    # Fetches data only from ‘master’ branch
$ git pull origin     # Fetches any data you don’t have and merges it with local branch
$ git pull origin master # Fetches data from master and merges it with local master branch
$ git push origin develop # Pushes data from local ‘develop’ branch to remote ‘develop’ branch
$ git push origin develop:release # Pushes data from local ‘develop’ branch to remote ‘release’ branch


                                           git fetch origin
Remotes
$ git remote
Origin

$ git remote -v
Origin ssh://clickindia@192.168.0.77/home/clickindia/public_html/clickindia

$ git remote add test ssh://clickindia@test.clickindia.com/home/clickindia/public_html....

$ git remote rm origin
Gist of git
Git branching model
How will we work?
                                pull
                  master                      master                master

                                                          pull
                  develop
                                push           release




               Development                  Test server          Production
               192.168.0.77




Developer 1   Developer 2     Developer 3
Tagging and release
Once the code is merged into master production
  $ git tag -a v1.0.1      # applies v1.0.1 tag to current commit

  $ git tag                # To list all tags

  $ git tag -1 ‘v1.4.2*‘   # List all tags starting with 1.4.2

  $ git tag -a v1.0.1 -m ‘my version 1.0.1’

  $ git show v1.4

   tag v1.4
   Tagger: Scott Chacon <schacon@gee-mail.com>
   Date:    Mon Feb 9 14:45:11 2009 -0800
   my version 1.4
   commit 15027957951b64cf874c3557a0f3547bd83b3ff6
   Merge: 4a447f7... a6b4c97...
   Author: Scott Chacon <schacon@gee-mail.com>
   Date:   Sun Feb 8 19:02:46 2009 -0800
        Merge branch 'experiment'
Tagging
Tagging later
 $ git log --pretty=oneline
 15027957951b64cf874c3557a0f3547bd83b3ff6   Merge branch 'experiment'
 a6b4c97498bd301d84096da251c98a07c7723e65   beginning write support
 0d52aaab4479697da7686c15f77a3d64d9165190   one more thing
 6d52a271eda8725415634dd79daabbc4d9b6008e   Merge branch 'experiment'
 0b7434d86859cc7b8c3d5e1dddfed66ff742fcbc   added a commit function
 4682c3261057305bdd616e23b64b0857d832627b   added a todo file
 166ae0c4d3f420721acbb115cc33848dfcc2121a   started write support
 9fceb02d0ae598e95dc970b74767f19372d61af8   updated rakefile
 964f16d36dfccde844893cac5b347e7b3d44abbc   commit the todo
 8a5cbc430f1a9c3d00faaeffd07798508422908a   updated readme




 $ git tag -a v1.2 9fceb02
Tagging
Everyday commands
Working on a new feature
$ git pull origin develop

$ git checkout -b adposting

.....did development work.....

$ git commit -am ‘Created new ad posting form’

$ git push origin adposting

......tested feature on development server.....

$ git checkout develop

$ git merge --no-ff adposting

$ git push origin develop:release-v1.1.2 (push to test server as release-v1.1.2

.........fix testing bugs on release v1.1.2.......

$ git fetch origin release-v1.1.2 ( on production only done by sysadmin )

$ git checkout master

$ git merge --no-ff release-v.1.1.2

$ git tag -am v1.1.2 ‘released version v1.1.2’
Everyday commands
Working on a hotfix
$ git pull origin master

$ git checkout -b hotfixv1.1.1 master

.....fixed bug on test server.....

$ git commit -am ‘fixed e-mail address on contact page’

....... Tested by deepak ........

$ git fetch origin hotfixv1.1.1 ( on production only done by sysadmin )

...... Check if already on master....if not $ git checkout master

$ git merge --no-ff hotfixv1.1.1

$ git tag -am v1.1.1 ‘released version v1.1.1’

$ git pull origin master ( on test and development servers)
Version numbering


                v0.0.0
Major release                    Hot fixes


                Minor releases
References

• Progit.org -- a complete book on git
• Gitref.org -- A very simple reference of all commands

More Related Content

What's hot

Git Introduction Tutorial
Git Introduction TutorialGit Introduction Tutorial
Git Introduction TutorialThomas Rausch
 
Git slides
Git slidesGit slides
Git slidesNanyak S
 
Starting with Git & GitHub
Starting with Git & GitHubStarting with Git & GitHub
Starting with Git & GitHubNicolás Tourné
 
Introduction to Git
Introduction to GitIntroduction to Git
Introduction to GitLukas Fittl
 
Git - Basic Crash Course
Git - Basic Crash CourseGit - Basic Crash Course
Git - Basic Crash CourseNilay Binjola
 
Git Tutorial For Beginners | What is Git and GitHub? | DevOps Tools | DevOps ...
Git Tutorial For Beginners | What is Git and GitHub? | DevOps Tools | DevOps ...Git Tutorial For Beginners | What is Git and GitHub? | DevOps Tools | DevOps ...
Git Tutorial For Beginners | What is Git and GitHub? | DevOps Tools | DevOps ...Simplilearn
 
Git Version Control System
Git Version Control SystemGit Version Control System
Git Version Control SystemKMS Technology
 
Git Tutorial | Git Basics - Branching, Merging, Rebasing | Learn Git | DevOps...
Git Tutorial | Git Basics - Branching, Merging, Rebasing | Learn Git | DevOps...Git Tutorial | Git Basics - Branching, Merging, Rebasing | Learn Git | DevOps...
Git Tutorial | Git Basics - Branching, Merging, Rebasing | Learn Git | DevOps...Edureka!
 
Git 101: Git and GitHub for Beginners
Git 101: Git and GitHub for Beginners Git 101: Git and GitHub for Beginners
Git 101: Git and GitHub for Beginners HubSpot
 
Introduction to Git Commands and Concepts
Introduction to Git Commands and ConceptsIntroduction to Git Commands and Concepts
Introduction to Git Commands and ConceptsCarl Brown
 
Git and GitFlow branching model
Git and GitFlow branching modelGit and GitFlow branching model
Git and GitFlow branching modelPavlo Hodysh
 

What's hot (20)

Git Introduction Tutorial
Git Introduction TutorialGit Introduction Tutorial
Git Introduction Tutorial
 
Versioning avec Git
Versioning avec GitVersioning avec Git
Versioning avec Git
 
Git e GitHub
Git e GitHubGit e GitHub
Git e GitHub
 
Git slides
Git slidesGit slides
Git slides
 
Advanced Git
Advanced GitAdvanced Git
Advanced Git
 
Starting with Git & GitHub
Starting with Git & GitHubStarting with Git & GitHub
Starting with Git & GitHub
 
Git & GitHub for Beginners
Git & GitHub for BeginnersGit & GitHub for Beginners
Git & GitHub for Beginners
 
Introduction to Git
Introduction to GitIntroduction to Git
Introduction to Git
 
Git & GitLab
Git & GitLabGit & GitLab
Git & GitLab
 
Git - Basic Crash Course
Git - Basic Crash CourseGit - Basic Crash Course
Git - Basic Crash Course
 
Git Tutorial For Beginners | What is Git and GitHub? | DevOps Tools | DevOps ...
Git Tutorial For Beginners | What is Git and GitHub? | DevOps Tools | DevOps ...Git Tutorial For Beginners | What is Git and GitHub? | DevOps Tools | DevOps ...
Git Tutorial For Beginners | What is Git and GitHub? | DevOps Tools | DevOps ...
 
Git Grundlagen
Git GrundlagenGit Grundlagen
Git Grundlagen
 
Git for beginners
Git for beginnersGit for beginners
Git for beginners
 
Git Version Control System
Git Version Control SystemGit Version Control System
Git Version Control System
 
Git Tutorial | Git Basics - Branching, Merging, Rebasing | Learn Git | DevOps...
Git Tutorial | Git Basics - Branching, Merging, Rebasing | Learn Git | DevOps...Git Tutorial | Git Basics - Branching, Merging, Rebasing | Learn Git | DevOps...
Git Tutorial | Git Basics - Branching, Merging, Rebasing | Learn Git | DevOps...
 
Git 101: Git and GitHub for Beginners
Git 101: Git and GitHub for Beginners Git 101: Git and GitHub for Beginners
Git 101: Git and GitHub for Beginners
 
Grokking opensource with github
Grokking opensource with githubGrokking opensource with github
Grokking opensource with github
 
Git real slides
Git real slidesGit real slides
Git real slides
 
Introduction to Git Commands and Concepts
Introduction to Git Commands and ConceptsIntroduction to Git Commands and Concepts
Introduction to Git Commands and Concepts
 
Git and GitFlow branching model
Git and GitFlow branching modelGit and GitFlow branching model
Git and GitFlow branching model
 

Similar to Git basics

Get going with_git_ppt
Get going with_git_pptGet going with_git_ppt
Get going with_git_pptMiraz Al-Mamun
 
Git Distributed Version Control System
Git   Distributed Version Control SystemGit   Distributed Version Control System
Git Distributed Version Control SystemVictor Wong
 
Lets Git Together
Lets Git TogetherLets Git Together
Lets Git TogetherRakesh Jha
 
Git session Dropsolid.com
Git session Dropsolid.comGit session Dropsolid.com
Git session Dropsolid.comdropsolid
 
Git Started With Git
Git Started With GitGit Started With Git
Git Started With GitNick Quaranto
 
Working in Team using Git in Unity
Working in Team using Git in UnityWorking in Team using Git in Unity
Working in Team using Git in UnityRifauddin Tsalitsy
 
Nicola Iarocci - Git stories from the front line - Codemotion Milan 2017
Nicola Iarocci - Git stories from the front line - Codemotion Milan 2017Nicola Iarocci - Git stories from the front line - Codemotion Milan 2017
Nicola Iarocci - Git stories from the front line - Codemotion Milan 2017Codemotion
 
Introduction to Git for Artists
Introduction to Git for ArtistsIntroduction to Git for Artists
Introduction to Git for ArtistsDavid Newbury
 
Learning Basic GIT Cmd
Learning Basic GIT CmdLearning Basic GIT Cmd
Learning Basic GIT Cmdsrinathcox
 
Git - Get Ready To Use It
Git - Get Ready To Use ItGit - Get Ready To Use It
Git - Get Ready To Use ItDaniel Kummer
 
Git the Docs: A fun, hands-on introduction to version control
Git the Docs: A fun, hands-on introduction to version controlGit the Docs: A fun, hands-on introduction to version control
Git the Docs: A fun, hands-on introduction to version controlBecky Todd
 
Get Good With Git
Get Good With GitGet Good With Git
Get Good With GitHoffman Lab
 
Git development workflow
Git development workflowGit development workflow
Git development workflowSankar Suda
 

Similar to Git basics (20)

Get going with_git_ppt
Get going with_git_pptGet going with_git_ppt
Get going with_git_ppt
 
Git Distributed Version Control System
Git   Distributed Version Control SystemGit   Distributed Version Control System
Git Distributed Version Control System
 
Git Tech Talk
Git  Tech TalkGit  Tech Talk
Git Tech Talk
 
Git101
Git101Git101
Git101
 
Lets Git Together
Lets Git TogetherLets Git Together
Lets Git Together
 
Git session Dropsolid.com
Git session Dropsolid.comGit session Dropsolid.com
Git session Dropsolid.com
 
Git Started With Git
Git Started With GitGit Started With Git
Git Started With Git
 
Working in Team using Git in Unity
Working in Team using Git in UnityWorking in Team using Git in Unity
Working in Team using Git in Unity
 
Nicola Iarocci - Git stories from the front line - Codemotion Milan 2017
Nicola Iarocci - Git stories from the front line - Codemotion Milan 2017Nicola Iarocci - Git stories from the front line - Codemotion Milan 2017
Nicola Iarocci - Git stories from the front line - Codemotion Milan 2017
 
Introduction to Git for Artists
Introduction to Git for ArtistsIntroduction to Git for Artists
Introduction to Git for Artists
 
Gitflow
GitflowGitflow
Gitflow
 
Loading...git
Loading...gitLoading...git
Loading...git
 
Learning Basic GIT Cmd
Learning Basic GIT CmdLearning Basic GIT Cmd
Learning Basic GIT Cmd
 
簡單介紹git
簡單介紹git簡單介紹git
簡單介紹git
 
Git - Get Ready To Use It
Git - Get Ready To Use ItGit - Get Ready To Use It
Git - Get Ready To Use It
 
Git the Docs: A fun, hands-on introduction to version control
Git the Docs: A fun, hands-on introduction to version controlGit the Docs: A fun, hands-on introduction to version control
Git the Docs: A fun, hands-on introduction to version control
 
Git presentation
Git presentationGit presentation
Git presentation
 
Get Good With Git
Get Good With GitGet Good With Git
Get Good With Git
 
Git development workflow
Git development workflowGit development workflow
Git development workflow
 
Working with Git
Working with GitWorking with Git
Working with Git
 

More from Amit Sawhney

Spotify India Entry
Spotify India EntrySpotify India Entry
Spotify India EntryAmit Sawhney
 
FieldDay_Sonica_Sapient
FieldDay_Sonica_SapientFieldDay_Sonica_Sapient
FieldDay_Sonica_SapientAmit Sawhney
 
The math-behind-ab-testing
The math-behind-ab-testingThe math-behind-ab-testing
The math-behind-ab-testingAmit Sawhney
 
Improving email open rates
Improving email open ratesImproving email open rates
Improving email open ratesAmit Sawhney
 

More from Amit Sawhney (7)

Spotify India Entry
Spotify India EntrySpotify India Entry
Spotify India Entry
 
FieldDay_Sonica_Sapient
FieldDay_Sonica_SapientFieldDay_Sonica_Sapient
FieldDay_Sonica_Sapient
 
Tools I Carry
Tools I CarryTools I Carry
Tools I Carry
 
The math-behind-ab-testing
The math-behind-ab-testingThe math-behind-ab-testing
The math-behind-ab-testing
 
Improving email open rates
Improving email open ratesImproving email open rates
Improving email open rates
 
Investing early
Investing earlyInvesting early
Investing early
 
Scrum
ScrumScrum
Scrum
 

Recently uploaded

Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesZilliz
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationSafe Software
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr LapshynFwdays
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024The Digital Insurer
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsSergiu Bodiu
 

Recently uploaded (20)

Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector Databases
 
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry InnovationBeyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
Beyond Boundaries: Leveraging No-Code Solutions for Industry Innovation
 
AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
"Federated learning: out of reach no matter how close",Oleksandr Lapshyn
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024My INSURER PTE LTD - Insurtech Innovation Award 2024
My INSURER PTE LTD - Insurtech Innovation Award 2024
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
DevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platformsDevEX - reference for building teams, processes, and platforms
DevEX - reference for building teams, processes, and platforms
 

Git basics

  • 1. Git An intro to Git Source Control Management
  • 2. What is Git? Distributed version control system Linus Torvalds - to track linux kernel development Free and open source Designed to handle small/large projects with speed and efficiency Fast branching and merging
  • 3. Why source control? Faster development Archive of all code changes over time Compare changes and revert to old release Accountability Conserve disk space Good for you
  • 6. Installing git • To initialize git directory • $ git init • Start version controlling existing files • $ git add *.php *.inc *.html *.tpl • $ git commit -m ‘Initial project version’ • Cloning an existing repository • $ git clone ssh://clickindia@192.168.0.77/home/clickindia/public_html/clickindia
  • 7. Basic git workflow • You modify files in your working directory • You stage files adding snapshot of them to staging area • You do a commit which takes the files in staging area and stores the snapshot permanently
  • 8. Changes in repository To check status of your files Modifying files Tracking new files Removing files Staging modified files Committing files Ignoring files
  • 9. Example of gitignore $ cat .gitignore *.[oa] *~ *.a # no .a files !lib.a # but do track lib.a, even though you're ignoring .a files above /TODO # only ignore the root TODO file, not subdir/TODO build/ # ignore all files in the build/ directory doc/*.txt # ignore doc/notes.txt, but not doc/server/arch.txt
  • 10. Viewing staged and unstaged changes git status git diff (Compares working directory with staging area) git diff --staged git diff HEAD git diff v1.0 v1.1 git diff master adposting
  • 11. Branching $ git add README test.rb LICENSE $ git commit -m 'initial commit of my project' Created on commit Created on add
  • 14. Creating new branch $ git branch testing
  • 16. Switching branch $ git checkout testing
  • 17. Significance of branch $ vim test.php $ git commit -am “made a change”
  • 18. Significance of branch $ git checkout master
  • 19. Significance of branch $ vim test.php $ git commit -am “made a change”
  • 20. Basic branching and merging • Create a new feature branch • Do some work in that branch Critical issue in production • Revert back to production branch • Create a new branch to add the hotfix • After testing, merge the hotfix branch and push to production • Switch back to your original issue and continue
  • 21. Basic branching and merging $ git checkout -b iss53 Switched to a new branch "iss53"
  • 22. Basic branching and merging $ vi index.html $ git commit -a -m 'added a new footer [issue 53]'
  • 23. Basic branching and merging Issue in production $ git checkout master Switched to branch “master” $ git checkout -b ‘hotfix’ Switched to a new branch “hotfix” $ vim index.html $ git commit -am ‘fixed a broken email address’ [hotfix]: created 3a0874c: "fixed the broken email address" 1 files changed, 0 insertions(+), 1 deletions(-)
  • 24. Basic branching and merging $ git checkout master $ git merge --no-ff hotfix Updating f42c576..3a0874c README | 1 - 1 files changed, 0 insertions(+), 1 deletions(-) $ git branch -d hotfix Deleted branch hotfix (3a0874c).
  • 25. Basic branching and merging $ git checkout iss53 Switched to branch "iss53" $ vim index.html $ git commit -a -m 'finished the new footer [issue 53]' [iss53]: created ad82d7a: "finished the new footer [issue 53]" 1 files changed, 1 insertions(+), 0 deletions(-)
  • 26. Basic branching and merging $ git checkout master $ git merge iss53 Merge made by recursive. README | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
  • 27. Basic branching and merging $ git branch -d iss53
  • 28. Branch management $ git branch # Shows all the active branches $ git branch -v # Shows last commit on each branch $ git branch --merged # Shows which branches are merged with the branch you are on $ git branch --no-merged # Shows all branches that contain work you haven’t merged $ git branch -d testing # To delete a branch. Will fail if the branch is not yet merged
  • 29. Remote branches • Remote branches are references to the state of branches on your remote repositories
  • 31. Remote branches $ git fetch origin # Fetches any data you don’t have from remote ‘origin’ repository $ git fetch origin master # Fetches data only from ‘master’ branch $ git pull origin # Fetches any data you don’t have and merges it with local branch $ git pull origin master # Fetches data from master and merges it with local master branch $ git push origin develop # Pushes data from local ‘develop’ branch to remote ‘develop’ branch $ git push origin develop:release # Pushes data from local ‘develop’ branch to remote ‘release’ branch git fetch origin
  • 32. Remotes $ git remote Origin $ git remote -v Origin ssh://clickindia@192.168.0.77/home/clickindia/public_html/clickindia $ git remote add test ssh://clickindia@test.clickindia.com/home/clickindia/public_html.... $ git remote rm origin
  • 35. How will we work? pull master master master pull develop push release Development Test server Production 192.168.0.77 Developer 1 Developer 2 Developer 3
  • 36. Tagging and release Once the code is merged into master production $ git tag -a v1.0.1 # applies v1.0.1 tag to current commit $ git tag # To list all tags $ git tag -1 ‘v1.4.2*‘ # List all tags starting with 1.4.2 $ git tag -a v1.0.1 -m ‘my version 1.0.1’ $ git show v1.4 tag v1.4 Tagger: Scott Chacon <schacon@gee-mail.com> Date: Mon Feb 9 14:45:11 2009 -0800 my version 1.4 commit 15027957951b64cf874c3557a0f3547bd83b3ff6 Merge: 4a447f7... a6b4c97... Author: Scott Chacon <schacon@gee-mail.com> Date: Sun Feb 8 19:02:46 2009 -0800 Merge branch 'experiment'
  • 37. Tagging Tagging later $ git log --pretty=oneline 15027957951b64cf874c3557a0f3547bd83b3ff6 Merge branch 'experiment' a6b4c97498bd301d84096da251c98a07c7723e65 beginning write support 0d52aaab4479697da7686c15f77a3d64d9165190 one more thing 6d52a271eda8725415634dd79daabbc4d9b6008e Merge branch 'experiment' 0b7434d86859cc7b8c3d5e1dddfed66ff742fcbc added a commit function 4682c3261057305bdd616e23b64b0857d832627b added a todo file 166ae0c4d3f420721acbb115cc33848dfcc2121a started write support 9fceb02d0ae598e95dc970b74767f19372d61af8 updated rakefile 964f16d36dfccde844893cac5b347e7b3d44abbc commit the todo 8a5cbc430f1a9c3d00faaeffd07798508422908a updated readme $ git tag -a v1.2 9fceb02
  • 39. Everyday commands Working on a new feature $ git pull origin develop $ git checkout -b adposting .....did development work..... $ git commit -am ‘Created new ad posting form’ $ git push origin adposting ......tested feature on development server..... $ git checkout develop $ git merge --no-ff adposting $ git push origin develop:release-v1.1.2 (push to test server as release-v1.1.2 .........fix testing bugs on release v1.1.2....... $ git fetch origin release-v1.1.2 ( on production only done by sysadmin ) $ git checkout master $ git merge --no-ff release-v.1.1.2 $ git tag -am v1.1.2 ‘released version v1.1.2’
  • 40. Everyday commands Working on a hotfix $ git pull origin master $ git checkout -b hotfixv1.1.1 master .....fixed bug on test server..... $ git commit -am ‘fixed e-mail address on contact page’ ....... Tested by deepak ........ $ git fetch origin hotfixv1.1.1 ( on production only done by sysadmin ) ...... Check if already on master....if not $ git checkout master $ git merge --no-ff hotfixv1.1.1 $ git tag -am v1.1.1 ‘released version v1.1.1’ $ git pull origin master ( on test and development servers)
  • 41. Version numbering v0.0.0 Major release Hot fixes Minor releases
  • 42. References • Progit.org -- a complete book on git • Gitref.org -- A very simple reference of all commands