SlideShare a Scribd company logo
1 of 19
GIT SCM
Contents
• Popularity
    – Projects that use/require Git
• Functionality
    – Distributed repository
    – Branching/merging
•   Learning
•   Resources required
•   Support by 3rd party tools
•   Summary
Git vs SVN on Google Trends
GitHub vs SourceForge on
     Google Trends
Projects that use Git
•   Linux kernel             •   less.js
•   Ruby on Rails            •   Elastic search
•   jQuery                   •   Eclipse
•   node.js                  •   Gnome
•   Twitter bootstrap        •   KDE
•   Diaspora SN              •   Qt
•   Symfony (requires it!)   •   Android (!!!)
•   Facebook OS projects     •   Stanford/Berkley in
                                 their learning courses
Git Concepts
• Local Repository(just type git init, or right
  click…)
• Commit
• Push/pull
• Origin ( the place you took the source from)
• Tags ( real tags, no space required, made
  effortlessly)
• Branches (actual branches, not copies of code)
Distributed vs Centralized
But, you can use Git as a centralized
         repository as well
                      Team
               branches(feature,
             release, maintenance)




                                     Can have
                                       local
                                     branches
Pros
• Git is incredibly faster than SVN cause nearly all operations other
  than push and pull work locally
• Uses compression when storing/sending code over network. As a
  result pull/clone/push happen a lot faster.
• Preserves the actual author of the code during merge
• Allows simultaneous storage of several branches in a single folder
• Allows offline commits
• Branches know where they came from. Merging them is a piece of
  cake
• Does not pollute your repo by creating stupid .svn folders in each
  folder
Pros continued
• Git repos are much smaller than SVN’s (30x smaller in
  case of Mozilla project)
• Git branches are simpler and less resource heavy than
  SVN's
• Git allows you to execute hooks on some
  events(commit, push, pull)
• Allows commit amend (fix your last commit)
• Requires the damned comment thing
• To be sure that you won’t loose some code you can just
  commit it locally instead of copying the files
• Ignoring files is easier
What people will learn when working
              with git
• A more modern way to do SCM
• They will learn to actually do branching. It won’t
  be a pain in the ass
• They would be forced to type in the damned
  comment when committing. The thing’s
  important.
• They won’t have to learn it anyway when they
  finally encounter it in the wild (symfony2)
• Anyone who knows git can handle SVN anytime
• Contributing
Cons
• Steep learning curve
• Some UI tools do not yet fully support Git
• Is harder to configure on client machine ( at
  least it was a year ago )
• It is impossible to checkout a portion of the
  project tree (???)
• Cumbersome revision numbers
Git performance
Git Branching?
• Tracks the project revision the branch started
  from
• Records branch merge events
  (author, time, date, branch revision info)
• Changes made on the branches remain attributed
  to original authors
• Changes made during the merging process are
  attributed to the merging user
• Automatically starts the next merge at the last
  merge (a branch can be merged twice)
Possible Branching Model
Resources Required
          SVN                    Git
• Centralized server   • Centralized server
• Client software      • Client software
  • TortoiseSVN          • TortoiseGit
  • IDE/plugin           • IDE/plugin
  • Command line         • Command line git
     SVN client             client
                         • SmartGit if none
                            of the above suits
Setup on windows
• mysysgit port of git to windows
• Public/private certificates on each user
  machine for auth
• TortoiseGit (so one will have lovely icons on git
  managed folders)
• SmartGit looks like the best UI tool (I haven’t
  tried eclipse built-in git plugin)
Tools
•   TortoiseGit
•   Command line utility
•   SmartGit
•   Eclipse git plugin ( EGit )
•   Git source control provider for Visual Studio
Resources
• A successful Git branching model
  http://goo.gl/b1EA7
• Good Git cheatsheet http://goo.gl/vUSlV
• Git website http://goo.gl/D3sxy

More Related Content

Viewers also liked

Snakes on the Web; Developing web applications in python
Snakes on the Web; Developing web applications in pythonSnakes on the Web; Developing web applications in python
Snakes on the Web; Developing web applications in pythonNaail AbdulRahman
 
Thaana computing brief history
Thaana computing brief historyThaana computing brief history
Thaana computing brief historyNaail AbdulRahman
 
Course Tech 2013, Lisa Friedrichsen, Wikis -- Quick Fun,Fast Support
Course Tech 2013, Lisa Friedrichsen, Wikis -- Quick Fun,Fast SupportCourse Tech 2013, Lisa Friedrichsen, Wikis -- Quick Fun,Fast Support
Course Tech 2013, Lisa Friedrichsen, Wikis -- Quick Fun,Fast SupportCengage Learning
 
Laravel for Web Artisans
Laravel for Web ArtisansLaravel for Web Artisans
Laravel for Web ArtisansRaf Kewl
 
Laravel 5 In Depth
Laravel 5 In DepthLaravel 5 In Depth
Laravel 5 In DepthKirk Bushell
 

Viewers also liked (6)

Snakes on the Web; Developing web applications in python
Snakes on the Web; Developing web applications in pythonSnakes on the Web; Developing web applications in python
Snakes on the Web; Developing web applications in python
 
Thaana computing brief history
Thaana computing brief historyThaana computing brief history
Thaana computing brief history
 
Course Tech 2013, Lisa Friedrichsen, Wikis -- Quick Fun,Fast Support
Course Tech 2013, Lisa Friedrichsen, Wikis -- Quick Fun,Fast SupportCourse Tech 2013, Lisa Friedrichsen, Wikis -- Quick Fun,Fast Support
Course Tech 2013, Lisa Friedrichsen, Wikis -- Quick Fun,Fast Support
 
KServe Retail Outlet
KServe Retail OutletKServe Retail Outlet
KServe Retail Outlet
 
Laravel for Web Artisans
Laravel for Web ArtisansLaravel for Web Artisans
Laravel for Web Artisans
 
Laravel 5 In Depth
Laravel 5 In DepthLaravel 5 In Depth
Laravel 5 In Depth
 

Similar to Git SCM: Distributed Version Control System

Learn Git - For Beginners and Intermediate levels
Learn Git - For Beginners and Intermediate levelsLearn Git - For Beginners and Intermediate levels
Learn Git - For Beginners and Intermediate levelsGorav Singal
 
Git for folk who like GUIs
Git for folk who like GUIsGit for folk who like GUIs
Git for folk who like GUIsTim Osborn
 
Que nos espera a los ALM Dudes para el 2013?
Que nos espera a los ALM Dudes para el 2013?Que nos espera a los ALM Dudes para el 2013?
Que nos espera a los ALM Dudes para el 2013?Bruno Capuano
 
Practical Git - NYC Code Camp
Practical Git - NYC Code CampPractical Git - NYC Code Camp
Practical Git - NYC Code CampChristopher Gomez
 
Embedded Systems: Lecture 10: Introduction to Git & GitHub (Part 1)
Embedded Systems: Lecture 10: Introduction to Git & GitHub (Part 1)Embedded Systems: Lecture 10: Introduction to Git & GitHub (Part 1)
Embedded Systems: Lecture 10: Introduction to Git & GitHub (Part 1)Ahmed El-Arabawy
 
Git with bitbucket
Git with bitbucketGit with bitbucket
Git with bitbucketSumin Byeon
 
ePOM - Fundamentals of Research Software Development - Code Version Control
ePOM - Fundamentals of Research Software Development - Code Version ControlePOM - Fundamentals of Research Software Development - Code Version Control
ePOM - Fundamentals of Research Software Development - Code Version ControlGiuseppe Masetti
 
Git(hub) for windows developers
Git(hub) for windows developersGit(hub) for windows developers
Git(hub) for windows developersbwullems
 
Using Git with Rational Team Concert and Rational ClearCase in enterprise env...
Using Git with Rational Team Concert and Rational ClearCase in enterprise env...Using Git with Rational Team Concert and Rational ClearCase in enterprise env...
Using Git with Rational Team Concert and Rational ClearCase in enterprise env...Bartosz Chrabski
 
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 GitHubBigBlueHat
 
Make Git Understand Excel Workbooks - Eusprig 2018
Make Git Understand Excel Workbooks - Eusprig 2018Make Git Understand Excel Workbooks - Eusprig 2018
Make Git Understand Excel Workbooks - Eusprig 2018Björn Stiel
 

Similar to Git SCM: Distributed Version Control System (20)

Mini-training: Let’s Git It!
Mini-training: Let’s Git It!Mini-training: Let’s Git It!
Mini-training: Let’s Git It!
 
Git for Windows
Git for WindowsGit for Windows
Git for Windows
 
Learn Git - For Beginners and Intermediate levels
Learn Git - For Beginners and Intermediate levelsLearn Git - For Beginners and Intermediate levels
Learn Git - For Beginners and Intermediate levels
 
Git Presentation
Git PresentationGit Presentation
Git Presentation
 
Git for folk who like GUIs
Git for folk who like GUIsGit for folk who like GUIs
Git for folk who like GUIs
 
Que nos espera a los ALM Dudes para el 2013?
Que nos espera a los ALM Dudes para el 2013?Que nos espera a los ALM Dudes para el 2013?
Que nos espera a los ALM Dudes para el 2013?
 
Git'in on Windows
Git'in on WindowsGit'in on Windows
Git'in on Windows
 
Practical Git - NYC Code Camp
Practical Git - NYC Code CampPractical Git - NYC Code Camp
Practical Git - NYC Code Camp
 
Mastering git
Mastering gitMastering git
Mastering git
 
Git basic
Git basicGit basic
Git basic
 
git and github
git and githubgit and github
git and github
 
Embedded Systems: Lecture 10: Introduction to Git & GitHub (Part 1)
Embedded Systems: Lecture 10: Introduction to Git & GitHub (Part 1)Embedded Systems: Lecture 10: Introduction to Git & GitHub (Part 1)
Embedded Systems: Lecture 10: Introduction to Git & GitHub (Part 1)
 
Git with bitbucket
Git with bitbucketGit with bitbucket
Git with bitbucket
 
ePOM - Fundamentals of Research Software Development - Code Version Control
ePOM - Fundamentals of Research Software Development - Code Version ControlePOM - Fundamentals of Research Software Development - Code Version Control
ePOM - Fundamentals of Research Software Development - Code Version Control
 
Working with Git
Working with GitWorking with Git
Working with Git
 
Git(hub) for windows developers
Git(hub) for windows developersGit(hub) for windows developers
Git(hub) for windows developers
 
Using Git with Rational Team Concert and Rational ClearCase in enterprise env...
Using Git with Rational Team Concert and Rational ClearCase in enterprise env...Using Git with Rational Team Concert and Rational ClearCase in enterprise env...
Using Git with Rational Team Concert and Rational ClearCase in enterprise env...
 
Intro to Git & GitHub
Intro to Git & GitHubIntro to Git & GitHub
Intro to Git & GitHub
 
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
 
Make Git Understand Excel Workbooks - Eusprig 2018
Make Git Understand Excel Workbooks - Eusprig 2018Make Git Understand Excel Workbooks - Eusprig 2018
Make Git Understand Excel Workbooks - Eusprig 2018
 

Recently uploaded

SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024Scott Keck-Warren
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)Gabriella Davis
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machinePadma Pradeep
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonetsnaman860154
 
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
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersThousandEyes
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 

Recently uploaded (20)

SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024SQL Database Design For Developers at php[tek] 2024
SQL Database Design For Developers at php[tek] 2024
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)A Domino Admins Adventures (Engage 2024)
A Domino Admins Adventures (Engage 2024)
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
Install Stable Diffusion in windows machine
Install Stable Diffusion in windows machineInstall Stable Diffusion in windows machine
Install Stable Diffusion in windows machine
 
How to convert PDF to text with Nanonets
How to convert PDF to text with NanonetsHow to convert PDF to text with Nanonets
How to convert PDF to text with Nanonets
 
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...
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for PartnersEnhancing Worker Digital Experience: A Hands-on Workshop for Partners
Enhancing Worker Digital Experience: A Hands-on Workshop for Partners
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 

Git SCM: Distributed Version Control System

  • 2. Contents • Popularity – Projects that use/require Git • Functionality – Distributed repository – Branching/merging • Learning • Resources required • Support by 3rd party tools • Summary
  • 3. Git vs SVN on Google Trends
  • 4. GitHub vs SourceForge on Google Trends
  • 5. Projects that use Git • Linux kernel • less.js • Ruby on Rails • Elastic search • jQuery • Eclipse • node.js • Gnome • Twitter bootstrap • KDE • Diaspora SN • Qt • Symfony (requires it!) • Android (!!!) • Facebook OS projects • Stanford/Berkley in their learning courses
  • 6. Git Concepts • Local Repository(just type git init, or right click…) • Commit • Push/pull • Origin ( the place you took the source from) • Tags ( real tags, no space required, made effortlessly) • Branches (actual branches, not copies of code)
  • 8. But, you can use Git as a centralized repository as well Team branches(feature, release, maintenance) Can have local branches
  • 9. Pros • Git is incredibly faster than SVN cause nearly all operations other than push and pull work locally • Uses compression when storing/sending code over network. As a result pull/clone/push happen a lot faster. • Preserves the actual author of the code during merge • Allows simultaneous storage of several branches in a single folder • Allows offline commits • Branches know where they came from. Merging them is a piece of cake • Does not pollute your repo by creating stupid .svn folders in each folder
  • 10. Pros continued • Git repos are much smaller than SVN’s (30x smaller in case of Mozilla project) • Git branches are simpler and less resource heavy than SVN's • Git allows you to execute hooks on some events(commit, push, pull) • Allows commit amend (fix your last commit) • Requires the damned comment thing • To be sure that you won’t loose some code you can just commit it locally instead of copying the files • Ignoring files is easier
  • 11. What people will learn when working with git • A more modern way to do SCM • They will learn to actually do branching. It won’t be a pain in the ass • They would be forced to type in the damned comment when committing. The thing’s important. • They won’t have to learn it anyway when they finally encounter it in the wild (symfony2) • Anyone who knows git can handle SVN anytime • Contributing
  • 12. Cons • Steep learning curve • Some UI tools do not yet fully support Git • Is harder to configure on client machine ( at least it was a year ago ) • It is impossible to checkout a portion of the project tree (???) • Cumbersome revision numbers
  • 14. Git Branching? • Tracks the project revision the branch started from • Records branch merge events (author, time, date, branch revision info) • Changes made on the branches remain attributed to original authors • Changes made during the merging process are attributed to the merging user • Automatically starts the next merge at the last merge (a branch can be merged twice)
  • 16. Resources Required SVN Git • Centralized server • Centralized server • Client software • Client software • TortoiseSVN • TortoiseGit • IDE/plugin • IDE/plugin • Command line • Command line git SVN client client • SmartGit if none of the above suits
  • 17. Setup on windows • mysysgit port of git to windows • Public/private certificates on each user machine for auth • TortoiseGit (so one will have lovely icons on git managed folders) • SmartGit looks like the best UI tool (I haven’t tried eclipse built-in git plugin)
  • 18. Tools • TortoiseGit • Command line utility • SmartGit • Eclipse git plugin ( EGit ) • Git source control provider for Visual Studio
  • 19. Resources • A successful Git branching model http://goo.gl/b1EA7 • Good Git cheatsheet http://goo.gl/vUSlV • Git website http://goo.gl/D3sxy