際際滷

際際滷Share a Scribd company logo
Data Analytics Bootcamp
Session 5: Data Analytics Development
Source Code Management
February 2017
Pre-requisites
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
 Must have GitHub.com account created
 Must have GitHub Desktop downloaded
and installed https://desktop.github.com/
Overview
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
 Understand Source Code Management
 Learn How Git Works
 Learn How to Use Git on GitHub
 Become an Independent Contributor with
GitHub for Desktop
 Become Aware of Limitations
Source Code Management
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
Source Code Management
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
Have You Invented Your Own Source Control?
Source Code Management
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
Why do you need Source Control?
 Back-ups
 Version numbers or date
 Shared folders or drives
Source Code Management
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
Understand Source Code Management
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
A source control system is a system that
keeps track of files over time
 In a secure and reliable manner
 In a manner that allows you to get back to a previous or
alternative version at any time
 In a manner that allows for undisruptive individual
contribution and experimentation
 In a manner that allows for great team work and
collaboration
Understand Source Code Management
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
Common Concepts
 Repository (repo): The database storing the files.
 Server: The computer storing the repo.
 Client: The computer connecting to the repo.
 Working Set/Working Copy: Your local directory of
files, where you make changes.
 Trunk/Main/Master: The primary location for code in
the repo. Think of code as a family tree  the trunk is
the main line.
Understand Source Code Management
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
Keeping Track of Changes Over Time
Understand Source Code Management
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
What are the benefits of Source Control?
 Backup and restore
 Synchronize
 Short and long term undo
 Track changes
 Track ownership
 Sandboxing
 Branching and merging
Understand Source Code Management
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
Branching
Understand Source Code Management
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
Merging
Understand Source Code Management
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
Conflicts
Understand Source Code Management
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
What are the drawbacks of Source Control?
 Conflicts
 Learning curve
 Team-wide consensus
 Very limited use for binary files
Understand Source Code Management
What are commonly used source control
tools?
 SVN
 Mercurial
 Team Foundation Server
 Rational Team Concert
 Git
 GitHub
 BitBucket
 GitLab
Understand Source Code Management
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
Activity 1
Which of these file formats suitable for
source control?
1. txt
2. png
3. html
4. css
5. doc
6. docx
7. jpg
8. csv
9. xlsx
10.sql
Understand Source Code Management
How does your work relate to this?
Learn How Git Works
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
 Why is Git Excellas source control system
of choice?
 How does Git work?
 What are common Git concepts and
terms?
Learn How Git Works
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
Why is Git Excellas source control system
of choice?
 Most popular
 Advanced
 Performant
 Durable
 Built for teams
 Suitable for fast paced Agile delivery
Learn How Git Works
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
How does Git work?
 Remote (master) repository
 Distributed local repositories
 Staging
 Working directory
Learn How Git Works
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
Learn How Git Works
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
What are common Git concepts and terms?
 Git CLI tool
 git init or git clone
 git add
 git commit
 git push
 git rm
 git pull or git fetch
 Branch, merge and pull requests
Learn How Git Works
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
Activity 2
Map source code management functionality
to Git terminology
1. Register changes
2. Get initial copy of repo
3. Save changes
4. Get others changes
5. Share changes
a. commit
b. pull
c. push
d. clone
e. add
Learn How Git Works
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
Want to learn the CLI?
 Take the GitHub Challenge
https://try.github.io/
Learn How Git Works
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
How does your work relate to this?
Learn How to Use Git on GitHub
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
 What is GitHub?
 Why use GitHub?
 What are common GitHub features?
Learn How to Use Git on GitHub
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
What is GitHub?
 A website that wraps the Git software
and allows software developers to host
their open source code online for free and
private code for a fee.
 Github is a repository for you to store,
exchange, trade, and talk about code.
 Github is at the absolute core of the
software development universe.
Learn How to Use Git on GitHub
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
Why use GitHub?
 GitHub has become a utility
 Ubiquitous
 Reliable
 Secure
 Useful features
 Rich integrations
 One stop shop for most projects
 Makes Git easy to use
Learn How to Use Git on GitHub
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
What are common GitHub features?
 Visual repository explorer
 Search
 Code Viewer/Editor
 Issues
 Code Reviews & Pull Requests
 Wiki
 GitHub Pages
 Continuous Integration Hooks
Learn How to Use Git on GitHub
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
Activity 3
Hands on exercise to create your own
GitHub repository and use the website to
update Readme.md
1. Login to your GitHub.com account
2. Create a new public repository
3. Click on Readme.md
4. Make a change and commit changes
5. Verify change on repository home page
Become an Independent Contributor
with GitHub Desktop
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
 What is GitHub Desktop?
 Why use GitHub Desktop?
 What is GitHub Flow?
Become an Independent Contributor
with GitHub Desktop
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
What is GitHub Desktop?
 A seamless way to contribute to projects
on GitHub and GitHub Enterprise
 Natively install on Mac or Windows
 Officially made and supported by GitHub
Become an Independent Contributor
with GitHub Desktop
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
Why use GitHub Desktop?
 Easy to use
 Visual interface
 Reasonable learning curve
 Implements common Git functions
 Implements GitHub Flow
Become an Independent Contributor
with GitHub Desktop
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
What is GitHub Flow?
 Contributors never directly commit to
master
 Prevents dangerous or harmful actions
 Every change is a new branch
 Branch -> Commit -> Pull Request ->
Merge
Become an Independent Contributor
with GitHub Desktop
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
What is GitHub Flow?
Branch
Become an Independent Contributor
with GitHub Desktop
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
What is GitHub Flow?
Commit
Become an Independent Contributor
with GitHub Desktop
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
What is GitHub Flow?
Open a Pull Request
Become an Independent Contributor
with GitHub Desktop
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
What is GitHub Flow?
Discuss and Review
Become an Independent Contributor
with GitHub Desktop
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
What is GitHub Flow?
Deploy
Become an Independent Contributor
with GitHub Desktop
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
What is GitHub Flow?
Merge
Become an Independent Contributor
with GitHub Desktop
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
Activity 4
Hands on exercise with GitHub Desktop to
successfully complete a source control
action independently
1. Login to the app with GitHub creds
2. Clone repository from Activity 3
3. Add a new file with content
4. Commit and push changes
5. Observe new file on GitHub.com
Become an Independent Contributor
with GitHub Desktop
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
How does your work relate to this?
Become an Independent Contributor
with GitHub Desktop
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
Activity 5
Partner exercise with GitHub Desktop to
learn how to work as a team
1. Clone partners repository
2. Create a new branch
3. Create a new file
4. Commit changes
5. Create and submit a pull request
6. Partner: Observe and accept pull request
Become Aware of Limitations
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
 Limitations of GitHub Desktop
 What is a merge conflict?
 How to resolve a merge conflict?
Become Aware of Limitations
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
Limitations of GitHub for Desktop
 Doesnt support advanced Git commands
 Can be slow with massive code bases
 Developers seem to CLI the best
 Advanced Users Download
 Tower/Git Extensions (Windows)
 Tower (Mac)
Become Aware of Limitations
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
What is a merge conflict?
Become Aware of Limitations
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
How to resolve a merge conflict?
 You need a merge tool
 You can automatically or manually resolve
 Ask someone who knows better 
 Advanced Users Download
 KDiff3 (Windows)
 Kaleidoscope (Mac)
Summary
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
Understood Source Code Management
Learned How Git Works
Learned How to Use Git on GitHub
Became an Independent Contributor with
GitHub for Desktop
Became Aware of Limitations
Summary
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)
Enable team work
Share responsibility
Create repeatable processes
Automate process
Be able to undo mistakes
Be able to take a vacation
Dont be a squirrel
Session 1
Managing
Self
Session 3
Managing
Others
(Part 2)
Session 4
Managing
Teams
Session 2
Managing
Others
(Part 1)

More Related Content

Viewers also liked (13)

Sir John Ellis Prize 2015 - KCL MBBS 2020 Curriculum Review
Sir John Ellis Prize 2015 - KCL MBBS 2020 Curriculum ReviewSir John Ellis Prize 2015 - KCL MBBS 2020 Curriculum Review
Sir John Ellis Prize 2015 - KCL MBBS 2020 Curriculum Review
therajivsethi
Aprendizaje por proyectos. Aprendizaje por proyectos.
Aprendizaje por proyectos.
Graciela Bertancud
Creating Effective Data Visualizations for Online Learning
Creating Effective Data Visualizations for Online Learning Creating Effective Data Visualizations for Online Learning
Creating Effective Data Visualizations for Online Learning
Shalin Hai-Jew
G辿nesis y desarrollo de un proyecto eTwinningG辿nesis y desarrollo de un proyecto eTwinning
G辿nesis y desarrollo de un proyecto eTwinning
Angel Turrado
Consumption pattern & attitude of beer consumers
Consumption pattern & attitude of beer consumersConsumption pattern & attitude of beer consumers
Consumption pattern & attitude of beer consumers
Ajay Prathap
Risk Management & Contingency Guideline Training Workshop
Risk Management & Contingency Guideline Training WorkshopRisk Management & Contingency Guideline Training Workshop
Risk Management & Contingency Guideline Training Workshop
Pedram Danesh-Mand
SSI WaterChat TM
SSI WaterChat TMSSI WaterChat TM
SSI WaterChat TM
TomFrankel
SharePoint Saturday Warsaw: Seek a Modern and Intelligent Foundation for your...
SharePoint Saturday Warsaw: Seek a Modern and Intelligent Foundation for your...SharePoint Saturday Warsaw: Seek a Modern and Intelligent Foundation for your...
SharePoint Saturday Warsaw: Seek a Modern and Intelligent Foundation for your...
Vlad Catrinescu
Organizational Network Analyses: a disruptive approach with HOW4
Organizational Network Analyses: a disruptive approach with HOW4Organizational Network Analyses: a disruptive approach with HOW4
Organizational Network Analyses: a disruptive approach with HOW4
Michela Visciola
Taiwan's Social Protection: Shift to Asset Accumulation Welfare Provision
Taiwan's Social Protection: Shift to Asset Accumulation Welfare ProvisionTaiwan's Social Protection: Shift to Asset Accumulation Welfare Provision
Taiwan's Social Protection: Shift to Asset Accumulation Welfare Provision
Mark Raygan Garcia
R. Villano - Colophon libro Antibioticoresistenza
R. Villano - Colophon libro AntibioticoresistenzaR. Villano - Colophon libro Antibioticoresistenza
R. Villano - Colophon libro Antibioticoresistenza
Raimondo Villano
R. Villano - Las fotos (es p.9)R. Villano - Las fotos (es p.9)
R. Villano - Las fotos (es p.9)
Raimondo Villano
R. Villano - S.M.O.M.: Acismom
 R. Villano - S.M.O.M.: Acismom R. Villano - S.M.O.M.: Acismom
R. Villano - S.M.O.M.: Acismom
Raimondo Villano
Sir John Ellis Prize 2015 - KCL MBBS 2020 Curriculum Review
Sir John Ellis Prize 2015 - KCL MBBS 2020 Curriculum ReviewSir John Ellis Prize 2015 - KCL MBBS 2020 Curriculum Review
Sir John Ellis Prize 2015 - KCL MBBS 2020 Curriculum Review
therajivsethi
Aprendizaje por proyectos. Aprendizaje por proyectos.
Aprendizaje por proyectos.
Graciela Bertancud
Creating Effective Data Visualizations for Online Learning
Creating Effective Data Visualizations for Online Learning Creating Effective Data Visualizations for Online Learning
Creating Effective Data Visualizations for Online Learning
Shalin Hai-Jew
G辿nesis y desarrollo de un proyecto eTwinningG辿nesis y desarrollo de un proyecto eTwinning
G辿nesis y desarrollo de un proyecto eTwinning
Angel Turrado
Consumption pattern & attitude of beer consumers
Consumption pattern & attitude of beer consumersConsumption pattern & attitude of beer consumers
Consumption pattern & attitude of beer consumers
Ajay Prathap
Risk Management & Contingency Guideline Training Workshop
Risk Management & Contingency Guideline Training WorkshopRisk Management & Contingency Guideline Training Workshop
Risk Management & Contingency Guideline Training Workshop
Pedram Danesh-Mand
SSI WaterChat TM
SSI WaterChat TMSSI WaterChat TM
SSI WaterChat TM
TomFrankel
SharePoint Saturday Warsaw: Seek a Modern and Intelligent Foundation for your...
SharePoint Saturday Warsaw: Seek a Modern and Intelligent Foundation for your...SharePoint Saturday Warsaw: Seek a Modern and Intelligent Foundation for your...
SharePoint Saturday Warsaw: Seek a Modern and Intelligent Foundation for your...
Vlad Catrinescu
Organizational Network Analyses: a disruptive approach with HOW4
Organizational Network Analyses: a disruptive approach with HOW4Organizational Network Analyses: a disruptive approach with HOW4
Organizational Network Analyses: a disruptive approach with HOW4
Michela Visciola
Taiwan's Social Protection: Shift to Asset Accumulation Welfare Provision
Taiwan's Social Protection: Shift to Asset Accumulation Welfare ProvisionTaiwan's Social Protection: Shift to Asset Accumulation Welfare Provision
Taiwan's Social Protection: Shift to Asset Accumulation Welfare Provision
Mark Raygan Garcia
R. Villano - Colophon libro Antibioticoresistenza
R. Villano - Colophon libro AntibioticoresistenzaR. Villano - Colophon libro Antibioticoresistenza
R. Villano - Colophon libro Antibioticoresistenza
Raimondo Villano
R. Villano - Las fotos (es p.9)R. Villano - Las fotos (es p.9)
R. Villano - Las fotos (es p.9)
Raimondo Villano
R. Villano - S.M.O.M.: Acismom
 R. Villano - S.M.O.M.: Acismom R. Villano - S.M.O.M.: Acismom
R. Villano - S.M.O.M.: Acismom
Raimondo Villano

Similar to Source Code Management for Beginners: Become a Contributor with Git and GitHub (20)

O365Con18 - Git and GitHub - Rick van Rousselt
O365Con18 - Git and GitHub - Rick van RousseltO365Con18 - Git and GitHub - Rick van Rousselt
O365Con18 - Git and GitHub - Rick van Rousselt
NCCOMMS
Let's Git this Party Started: An Introduction to Git and GitHub
Let's Git this Party Started: An Introduction to Git and GitHubLet's Git this Party Started: An Introduction to Git and GitHub
Let's Git this Party Started: An Introduction to Git and GitHub
Kim Moir
Advanced ICT Tools - Git, Github and other collaborative tools
Advanced ICT Tools - Git, Github and other collaborative toolsAdvanced ICT Tools - Git, Github and other collaborative tools
Advanced ICT Tools - Git, Github and other collaborative tools
latha2009
Git for folk who like GUIs
Git for folk who like GUIsGit for folk who like GUIs
Git for folk who like GUIs
Tim Osborn
Git training
Git trainingGit training
Git training
J辿r辿my Gobet
Git GitHub jsdbcghsvchjsbcmshg cv ddcsd cjhsbdcjhbdscbc gs cgsvcsbcdbdkjcbsdk...
Git GitHub jsdbcghsvchjsbcmshg cv ddcsd cjhsbdcjhbdscbc gs cgsvcsbcdbdkjcbsdk...Git GitHub jsdbcghsvchjsbcmshg cv ddcsd cjhsbdcjhbdscbc gs cgsvcsbcdbdkjcbsdk...
Git GitHub jsdbcghsvchjsbcmshg cv ddcsd cjhsbdcjhbdscbc gs cgsvcsbcdbdkjcbsdk...
saurabhpandeychp1
11 git version control
11 git version control11 git version control
11 git version control
Wasim Alatrash
Introduction to git
Introduction to gitIntroduction to git
Introduction to git
Nguyen Van Hung
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 basics
Git basicsGit basics
Git basics
Anthony Eli Agbenu
Introduction to git and githhub with practicals.pptx
Introduction to git and githhub with practicals.pptxIntroduction to git and githhub with practicals.pptx
Introduction to git and githhub with practicals.pptx
Abdul Salam
Git training v10
Git training v10Git training v10
Git training v10
Skander Hamza
Introduction to Git
Introduction to GitIntroduction to Git
Introduction to Git
Colin Su
Intro to git and git hub
Intro to git and git hubIntro to git and git hub
Intro to git and git hub
ShubhamSingh94916
Git installation and configuration
Git installation and configurationGit installation and configuration
Git installation and configuration
Kishor Kumar
Git
GitGit
Git
Okba Mahdjoub
Git introduction for Beginners
Git introduction for BeginnersGit introduction for Beginners
Git introduction for Beginners
MortezaTaghaddomi
Questions and Answers git and github.pdf
Questions and Answers git and github.pdfQuestions and Answers git and github.pdf
Questions and Answers git and github.pdf
ramu56565454
Introduction to Git
Introduction to GitIntroduction to Git
Introduction to Git
atishgoswami
git and github-1.pptx
git and github-1.pptxgit and github-1.pptx
git and github-1.pptx
tnscharishma
O365Con18 - Git and GitHub - Rick van Rousselt
O365Con18 - Git and GitHub - Rick van RousseltO365Con18 - Git and GitHub - Rick van Rousselt
O365Con18 - Git and GitHub - Rick van Rousselt
NCCOMMS
Let's Git this Party Started: An Introduction to Git and GitHub
Let's Git this Party Started: An Introduction to Git and GitHubLet's Git this Party Started: An Introduction to Git and GitHub
Let's Git this Party Started: An Introduction to Git and GitHub
Kim Moir
Advanced ICT Tools - Git, Github and other collaborative tools
Advanced ICT Tools - Git, Github and other collaborative toolsAdvanced ICT Tools - Git, Github and other collaborative tools
Advanced ICT Tools - Git, Github and other collaborative tools
latha2009
Git for folk who like GUIs
Git for folk who like GUIsGit for folk who like GUIs
Git for folk who like GUIs
Tim Osborn
Git GitHub jsdbcghsvchjsbcmshg cv ddcsd cjhsbdcjhbdscbc gs cgsvcsbcdbdkjcbsdk...
Git GitHub jsdbcghsvchjsbcmshg cv ddcsd cjhsbdcjhbdscbc gs cgsvcsbcdbdkjcbsdk...Git GitHub jsdbcghsvchjsbcmshg cv ddcsd cjhsbdcjhbdscbc gs cgsvcsbcdbdkjcbsdk...
Git GitHub jsdbcghsvchjsbcmshg cv ddcsd cjhsbdcjhbdscbc gs cgsvcsbcdbdkjcbsdk...
saurabhpandeychp1
11 git version control
11 git version control11 git version control
11 git version control
Wasim Alatrash
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
Introduction to git and githhub with practicals.pptx
Introduction to git and githhub with practicals.pptxIntroduction to git and githhub with practicals.pptx
Introduction to git and githhub with practicals.pptx
Abdul Salam
Introduction to Git
Introduction to GitIntroduction to Git
Introduction to Git
Colin Su
Git installation and configuration
Git installation and configurationGit installation and configuration
Git installation and configuration
Kishor Kumar
Git introduction for Beginners
Git introduction for BeginnersGit introduction for Beginners
Git introduction for Beginners
MortezaTaghaddomi
Questions and Answers git and github.pdf
Questions and Answers git and github.pdfQuestions and Answers git and github.pdf
Questions and Answers git and github.pdf
ramu56565454
Introduction to Git
Introduction to GitIntroduction to Git
Introduction to Git
atishgoswami
git and github-1.pptx
git and github-1.pptxgit and github-1.pptx
git and github-1.pptx
tnscharishma

Recently uploaded (20)

PLANT CELL REACTORS presenation PTC amity
PLANT CELL REACTORS presenation PTC amityPLANT CELL REACTORS presenation PTC amity
PLANT CELL REACTORS presenation PTC amity
UrjaMoon
Instill-AI------------------------------
Instill-AI------------------------------Instill-AI------------------------------
Instill-AI------------------------------
Jason Kuan
NBA Criteria TIER I and TIER II Comparison
NBA Criteria TIER I and TIER II ComparisonNBA Criteria TIER I and TIER II Comparison
NBA Criteria TIER I and TIER II Comparison
Dr INBAMALAR T M
Disruption channel in business model innovation topic
Disruption channel in business model innovation topicDisruption channel in business model innovation topic
Disruption channel in business model innovation topic
anandraj930873
Cecille Seminario Marra - Specializes In Medical Technology
Cecille Seminario Marra - Specializes In Medical TechnologyCecille Seminario Marra - Specializes In Medical Technology
Cecille Seminario Marra - Specializes In Medical Technology
Cecille Seminario Marra
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascioKtor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
infogdgmi
Why the Engineering Model is Key to Successful Projects
Why the Engineering Model is Key to Successful ProjectsWhy the Engineering Model is Key to Successful Projects
Why the Engineering Model is Key to Successful Projects
Maadhu Creatives-Model Making Company
DBMS Nested & Sub Queries Set operations
DBMS Nested & Sub Queries Set operationsDBMS Nested & Sub Queries Set operations
DBMS Nested & Sub Queries Set operations
Sreedhar Chowdam
Production Planning & Control and Inventory Management.pptx
Production Planning & Control and Inventory Management.pptxProduction Planning & Control and Inventory Management.pptx
Production Planning & Control and Inventory Management.pptx
VirajPasare
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptxUHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
ariomthermal2031
English presentation, tests and experiments.pptx
English presentation, tests and experiments.pptxEnglish presentation, tests and experiments.pptx
English presentation, tests and experiments.pptx
SamahEL2
Chapter1-Introduction 旅留粒粒旅虜劉 劉僚僚凌旅竜
Chapter1-Introduction 旅留粒粒旅虜劉 劉僚僚凌旅竜Chapter1-Introduction 旅留粒粒旅虜劉 劉僚僚凌旅竜
Chapter1-Introduction 旅留粒粒旅虜劉 劉僚僚凌旅竜
ssuserb91a20
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Ignacio J. J. Palma Carazo
GDGoC Artificial Intelligence Workshop.pptx
GDGoC Artificial Intelligence Workshop.pptxGDGoC Artificial Intelligence Workshop.pptx
GDGoC Artificial Intelligence Workshop.pptx
Aditi330605
Unit-03 Cams and Followers in Mechanisms of Machines.pptx
Unit-03 Cams and Followers in Mechanisms of Machines.pptxUnit-03 Cams and Followers in Mechanisms of Machines.pptx
Unit-03 Cams and Followers in Mechanisms of Machines.pptx
Kirankumar Jagtap
02.BigDataAnalytics curso de Legsi (1).pdf
02.BigDataAnalytics curso de Legsi (1).pdf02.BigDataAnalytics curso de Legsi (1).pdf
02.BigDataAnalytics curso de Legsi (1).pdf
ruioliveira1921
DBMS Notes selection projection aggregate
DBMS Notes selection projection aggregateDBMS Notes selection projection aggregate
DBMS Notes selection projection aggregate
Sreedhar Chowdam
Software security: Security a Software Issue
Software security: Security a Software IssueSoftware security: Security a Software Issue
Software security: Security a Software Issue
Dr Sarika Jadhav
UHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptx
UHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptxUHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptx
UHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptx
ariomthermal2031
GRAPHS AND DISCONTINUITIES POWERPOINT.pptx
GRAPHS AND DISCONTINUITIES POWERPOINT.pptxGRAPHS AND DISCONTINUITIES POWERPOINT.pptx
GRAPHS AND DISCONTINUITIES POWERPOINT.pptx
ChrisPuyoc1
PLANT CELL REACTORS presenation PTC amity
PLANT CELL REACTORS presenation PTC amityPLANT CELL REACTORS presenation PTC amity
PLANT CELL REACTORS presenation PTC amity
UrjaMoon
Instill-AI------------------------------
Instill-AI------------------------------Instill-AI------------------------------
Instill-AI------------------------------
Jason Kuan
NBA Criteria TIER I and TIER II Comparison
NBA Criteria TIER I and TIER II ComparisonNBA Criteria TIER I and TIER II Comparison
NBA Criteria TIER I and TIER II Comparison
Dr INBAMALAR T M
Disruption channel in business model innovation topic
Disruption channel in business model innovation topicDisruption channel in business model innovation topic
Disruption channel in business model innovation topic
anandraj930873
Cecille Seminario Marra - Specializes In Medical Technology
Cecille Seminario Marra - Specializes In Medical TechnologyCecille Seminario Marra - Specializes In Medical Technology
Cecille Seminario Marra - Specializes In Medical Technology
Cecille Seminario Marra
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascioKtor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
Ktor - Definizioni di Path, Integrazioni, Plugin e build fino al rilascio
infogdgmi
DBMS Nested & Sub Queries Set operations
DBMS Nested & Sub Queries Set operationsDBMS Nested & Sub Queries Set operations
DBMS Nested & Sub Queries Set operations
Sreedhar Chowdam
Production Planning & Control and Inventory Management.pptx
Production Planning & Control and Inventory Management.pptxProduction Planning & Control and Inventory Management.pptx
Production Planning & Control and Inventory Management.pptx
VirajPasare
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptxUHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
UHV UNIT-3 HARMONY IN THE FAMILY AND SOCIETY.pptx
ariomthermal2031
English presentation, tests and experiments.pptx
English presentation, tests and experiments.pptxEnglish presentation, tests and experiments.pptx
English presentation, tests and experiments.pptx
SamahEL2
Chapter1-Introduction 旅留粒粒旅虜劉 劉僚僚凌旅竜
Chapter1-Introduction 旅留粒粒旅虜劉 劉僚僚凌旅竜Chapter1-Introduction 旅留粒粒旅虜劉 劉僚僚凌旅竜
Chapter1-Introduction 旅留粒粒旅虜劉 劉僚僚凌旅竜
ssuserb91a20
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Analysis of Daylighting in Interior Spaces using the Daylight Factor - A Manu...
Ignacio J. J. Palma Carazo
GDGoC Artificial Intelligence Workshop.pptx
GDGoC Artificial Intelligence Workshop.pptxGDGoC Artificial Intelligence Workshop.pptx
GDGoC Artificial Intelligence Workshop.pptx
Aditi330605
Unit-03 Cams and Followers in Mechanisms of Machines.pptx
Unit-03 Cams and Followers in Mechanisms of Machines.pptxUnit-03 Cams and Followers in Mechanisms of Machines.pptx
Unit-03 Cams and Followers in Mechanisms of Machines.pptx
Kirankumar Jagtap
02.BigDataAnalytics curso de Legsi (1).pdf
02.BigDataAnalytics curso de Legsi (1).pdf02.BigDataAnalytics curso de Legsi (1).pdf
02.BigDataAnalytics curso de Legsi (1).pdf
ruioliveira1921
DBMS Notes selection projection aggregate
DBMS Notes selection projection aggregateDBMS Notes selection projection aggregate
DBMS Notes selection projection aggregate
Sreedhar Chowdam
Software security: Security a Software Issue
Software security: Security a Software IssueSoftware security: Security a Software Issue
Software security: Security a Software Issue
Dr Sarika Jadhav
UHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptx
UHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptxUHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptx
UHV Unit - 4 HARMONY IN THE NATURE AND EXISTENCE.pptx
ariomthermal2031
GRAPHS AND DISCONTINUITIES POWERPOINT.pptx
GRAPHS AND DISCONTINUITIES POWERPOINT.pptxGRAPHS AND DISCONTINUITIES POWERPOINT.pptx
GRAPHS AND DISCONTINUITIES POWERPOINT.pptx
ChrisPuyoc1

Source Code Management for Beginners: Become a Contributor with Git and GitHub

  • 1. Data Analytics Bootcamp Session 5: Data Analytics Development Source Code Management February 2017
  • 2. Pre-requisites Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Must have GitHub.com account created Must have GitHub Desktop downloaded and installed https://desktop.github.com/
  • 3. Overview Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Understand Source Code Management Learn How Git Works Learn How to Use Git on GitHub Become an Independent Contributor with GitHub for Desktop Become Aware of Limitations
  • 4. Source Code Management Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1)
  • 5. Source Code Management Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Have You Invented Your Own Source Control?
  • 6. Source Code Management Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Why do you need Source Control? Back-ups Version numbers or date Shared folders or drives
  • 7. Source Code Management Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1)
  • 8. Understand Source Code Management Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) A source control system is a system that keeps track of files over time In a secure and reliable manner In a manner that allows you to get back to a previous or alternative version at any time In a manner that allows for undisruptive individual contribution and experimentation In a manner that allows for great team work and collaboration
  • 9. Understand Source Code Management Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Common Concepts Repository (repo): The database storing the files. Server: The computer storing the repo. Client: The computer connecting to the repo. Working Set/Working Copy: Your local directory of files, where you make changes. Trunk/Main/Master: The primary location for code in the repo. Think of code as a family tree the trunk is the main line.
  • 10. Understand Source Code Management Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Keeping Track of Changes Over Time
  • 11. Understand Source Code Management Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) What are the benefits of Source Control? Backup and restore Synchronize Short and long term undo Track changes Track ownership Sandboxing Branching and merging
  • 12. Understand Source Code Management Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Branching
  • 13. Understand Source Code Management Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Merging
  • 14. Understand Source Code Management Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Conflicts
  • 15. Understand Source Code Management Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) What are the drawbacks of Source Control? Conflicts Learning curve Team-wide consensus Very limited use for binary files
  • 16. Understand Source Code Management What are commonly used source control tools? SVN Mercurial Team Foundation Server Rational Team Concert Git GitHub BitBucket GitLab
  • 17. Understand Source Code Management Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Activity 1 Which of these file formats suitable for source control? 1. txt 2. png 3. html 4. css 5. doc 6. docx 7. jpg 8. csv 9. xlsx 10.sql
  • 18. Understand Source Code Management How does your work relate to this?
  • 19. Learn How Git Works Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Why is Git Excellas source control system of choice? How does Git work? What are common Git concepts and terms?
  • 20. Learn How Git Works Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Why is Git Excellas source control system of choice? Most popular Advanced Performant Durable Built for teams Suitable for fast paced Agile delivery
  • 21. Learn How Git Works Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) How does Git work? Remote (master) repository Distributed local repositories Staging Working directory
  • 22. Learn How Git Works Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1)
  • 23. Learn How Git Works Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) What are common Git concepts and terms? Git CLI tool git init or git clone git add git commit git push git rm git pull or git fetch Branch, merge and pull requests
  • 24. Learn How Git Works Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Activity 2 Map source code management functionality to Git terminology 1. Register changes 2. Get initial copy of repo 3. Save changes 4. Get others changes 5. Share changes a. commit b. pull c. push d. clone e. add
  • 25. Learn How Git Works Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Want to learn the CLI? Take the GitHub Challenge https://try.github.io/
  • 26. Learn How Git Works Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) How does your work relate to this?
  • 27. Learn How to Use Git on GitHub Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) What is GitHub? Why use GitHub? What are common GitHub features?
  • 28. Learn How to Use Git on GitHub Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) What is GitHub? A website that wraps the Git software and allows software developers to host their open source code online for free and private code for a fee. Github is a repository for you to store, exchange, trade, and talk about code. Github is at the absolute core of the software development universe.
  • 29. Learn How to Use Git on GitHub Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Why use GitHub? GitHub has become a utility Ubiquitous Reliable Secure Useful features Rich integrations One stop shop for most projects Makes Git easy to use
  • 30. Learn How to Use Git on GitHub Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) What are common GitHub features? Visual repository explorer Search Code Viewer/Editor Issues Code Reviews & Pull Requests Wiki GitHub Pages Continuous Integration Hooks
  • 31. Learn How to Use Git on GitHub Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Activity 3 Hands on exercise to create your own GitHub repository and use the website to update Readme.md 1. Login to your GitHub.com account 2. Create a new public repository 3. Click on Readme.md 4. Make a change and commit changes 5. Verify change on repository home page
  • 32. Become an Independent Contributor with GitHub Desktop Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) What is GitHub Desktop? Why use GitHub Desktop? What is GitHub Flow?
  • 33. Become an Independent Contributor with GitHub Desktop Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) What is GitHub Desktop? A seamless way to contribute to projects on GitHub and GitHub Enterprise Natively install on Mac or Windows Officially made and supported by GitHub
  • 34. Become an Independent Contributor with GitHub Desktop Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Why use GitHub Desktop? Easy to use Visual interface Reasonable learning curve Implements common Git functions Implements GitHub Flow
  • 35. Become an Independent Contributor with GitHub Desktop Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) What is GitHub Flow? Contributors never directly commit to master Prevents dangerous or harmful actions Every change is a new branch Branch -> Commit -> Pull Request -> Merge
  • 36. Become an Independent Contributor with GitHub Desktop Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) What is GitHub Flow? Branch
  • 37. Become an Independent Contributor with GitHub Desktop Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) What is GitHub Flow? Commit
  • 38. Become an Independent Contributor with GitHub Desktop Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) What is GitHub Flow? Open a Pull Request
  • 39. Become an Independent Contributor with GitHub Desktop Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) What is GitHub Flow? Discuss and Review
  • 40. Become an Independent Contributor with GitHub Desktop Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) What is GitHub Flow? Deploy
  • 41. Become an Independent Contributor with GitHub Desktop Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) What is GitHub Flow? Merge
  • 42. Become an Independent Contributor with GitHub Desktop Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Activity 4 Hands on exercise with GitHub Desktop to successfully complete a source control action independently 1. Login to the app with GitHub creds 2. Clone repository from Activity 3 3. Add a new file with content 4. Commit and push changes 5. Observe new file on GitHub.com
  • 43. Become an Independent Contributor with GitHub Desktop Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) How does your work relate to this?
  • 44. Become an Independent Contributor with GitHub Desktop Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Activity 5 Partner exercise with GitHub Desktop to learn how to work as a team 1. Clone partners repository 2. Create a new branch 3. Create a new file 4. Commit changes 5. Create and submit a pull request 6. Partner: Observe and accept pull request
  • 45. Become Aware of Limitations Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Limitations of GitHub Desktop What is a merge conflict? How to resolve a merge conflict?
  • 46. Become Aware of Limitations Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Limitations of GitHub for Desktop Doesnt support advanced Git commands Can be slow with massive code bases Developers seem to CLI the best Advanced Users Download Tower/Git Extensions (Windows) Tower (Mac)
  • 47. Become Aware of Limitations Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) What is a merge conflict?
  • 48. Become Aware of Limitations Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) How to resolve a merge conflict? You need a merge tool You can automatically or manually resolve Ask someone who knows better Advanced Users Download KDiff3 (Windows) Kaleidoscope (Mac)
  • 49. Summary Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Understood Source Code Management Learned How Git Works Learned How to Use Git on GitHub Became an Independent Contributor with GitHub for Desktop Became Aware of Limitations
  • 50. Summary Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1) Enable team work Share responsibility Create repeatable processes Automate process Be able to undo mistakes Be able to take a vacation Dont be a squirrel
  • 51. Session 1 Managing Self Session 3 Managing Others (Part 2) Session 4 Managing Teams Session 2 Managing Others (Part 1)

Editor's Notes

  • #5: Ask the following questions: What is Source Control? What are the benefits? What are commonly used source control tools? Key points: Its collection of systems and tools that help you track change of your files over time. Transition To understand what it does, lets dig in to why we source code management in the first place.
  • #6: Ask: Got any files like this? What pattern do you observe with these files? Key point Ex #1: Resume with date Ex #2: Version image with arbitrary numbers Ex #3: .old Transition: Why do we do this?
  • #7: Ask: Why do we do this? Key Points - What is the purpose of doing source control?
  • #8: Key points: You dont want maintain your important work data like Squirrels maintain their acorns Hope and wish based system Properly engineered solution
  • #9: Key points Aka Version Control Aka Revision Control Go over attributes
  • #10: Key points: - Common concepts are very similar across different systems/tools
  • #52: Key points: You dont want maintain your important work data like Squirrels maintain their acorns Hope and wish based system Properly engineered solution