SlideShare a Scribd company logo
Git and Github
A developer’s best friend
What is Git?
!2
What is Git?
• Git is a Version Control System (VCS) designed to make it
easier to have multiple versions of a code base,
sometimes across multiple developers or teams
!3
What is Git?
• Git is a Version Control System (VCS) designed to make it
easier to have multiple versions of a code base,
sometimes across multiple developers or teams
• It allows you to see changes you make to your code and
easily revert them.
!4
What is Git?
• Git is a Version Control System (VCS) designed to make it
easier to have multiple versions of a code base,
sometimes across multiple developers or teams
• It allows you to see changes you make to your code and
easily revert them.
• It is NOT GITHUB!
!5
Ok, then what is Github?
• Github.com is a website that hosts git repositories on a
remote server
!6
Ok, then what is Github?
• Github.com is a website that hosts git repositories on a
remote server
• Hosting repositories on Github facilitates the sharing of
codebases among teams by providing a GUI to easily fork
or clone repos to a local machine
!7
Ok, then what is Github?
• Github.com is a website that hosts git repositories on a
remote server
• Hosting repositories on Github facilitates the sharing of
codebases among teams by providing a GUI to easily fork or
clone repos to a local machine
• By pushing your repositories to Github, you will pretty much
automatically create your own developer portfolio as well!
!8
Confirm that you have git
• Open your terminal and run ‘git’
• If you see a ‘command not recognized’ error, you
probably haven’t installed git yet.
• We can solve your issue when the lectures are over - sit
tight for now!
Configuring git
Your commits will have your name and email attached to them. To
confirm that this information is correct, run the following commands:
$ git config --global user.name
> should be your name, i.e. Jon Rosado
$ git config --global user.email
> should be your email, i.e. jon.rosado42@gmail.com
To fix either, just add the desired value in quotes after the command:
$ git config --global user.name “Jon Rosado”
$ git config --global user.email “jon.rodado42@gmail.com"
Using Git / Github
Connecting git with Github
• In order to prevent having to enter your password each
time you push up to Github, you must configure git and
Github to recognize Secured Shell (SSH) keys that you
generate.
• To check and see if you have any recognized SSH keys
active on Github, go to https://github.com/settings/keys
• If you do not see any SSH keys listed, you do not have
SSH configured with Github. We can assist with this later.
• If using Mac OS X, you can also configure your keychain
to automatically enter your password via HTTPS.
Connecting git with Github
• From your project directory, run `git init` to initialize
a git repository.
• Go to Github, and create a new repository with the name
of your project.
• Follow the instructions on Github to connect your
initialized git repository to the remote server on Github.
• *Please Note: you must have files in your project directory
to commit in order to push anything to your remote
server.
Basic git / Github workflow
• From your project repo on Github, navigate to the Issues tab and create a new
Issue
• From the command line, use git to create a new branch off of master to make
your edits to. To tie the branch to your issue on Github, make sure to include
the issue number after the branch name, e.g. branchName #1
• Stage edits to be committed to your git repository by using `git add <file
name>` to track the files that you want to add directly or `git add .` to
add all files at the current directory level that you have worked on.
• Commit changes using `git commit -m <message>` and be sure to leave
a short but descriptive message detailing what the commit will change when
merged to the master branch.
• Push changes to save them by using `git push origin <branch name>`
Basic git / Github workflow
• On Github, create a new pull request for the branch that you have just
pushed, and add any clarifying comments that you deem necessary.
• In order to close the issue associated with the pull request, tell
GitHub to do so by adding ‘closes <issue number>’ in the comments.
(you can also use ‘closed, fix, fixes, resolve, resolves, and resolved’
before the issue number as well).
• Github will automatically check for merge conflicts. If there are any,
check to see what they are and resolve them.
• Once everything is up to date, Github will allow you to merge using
three separate options: Merge; Squash and Merge; Rebase and
Merge.
git branching
• git branch to view current branches in repo
• git checkout -b <branch name> to create a new
branch with branch name
• git checkout <branch name> without ‘-b’ flag to
switch to existing branches
Merging vs Rebasing
• From a conceptual standpoint, git merge and git rebase
are used to achieve the same ultimate goal: to integrate
changes from one branch into another branch. There are,
however, distinct mechanics to both methods.
• We will be discussing how to use each from the context
of adding changes from your master branch into your
current working feature branch.
git merge: pros
• Generally the easiest option to merge your master branch
into your current working feature branch.
git merge: pros
• Generally the easiest option to merge your master branch
into your current working feature branch.
• You can `git checkout feature` and then `git
merge master` or you could just do it with one
command: git merge feature master
git merge: pros
• Generally the easiest option to merge your master branch
into your current working feature branch.
• You can `git checkout feature` and then `git
merge master` or you could just do it with one
command: git merge feature master
• By doing this, you create a new ‘merge commit’ in your
feature branch, which is a non-destructive operation that
ties the histories of both branches. This preserves the
exact history of your project
git merge: cons
• The branch that you merge will always have an
extraneous merge commit that will be tracked every time
you need to incorporate upstream states.
git merge: cons
• The branch that you merge will always have an
extraneous merge commit that will be tracked every time
you need to incorporate upstream states.
• In other words, it essentially creates a forked history at
the point where you merge.
git merge: cons
• The branch that you merge will always have an
extraneous merge commit that will be tracked every time
you need to incorporate upstream states.
• In other words, it essentially creates a forked history at
the point where you merge.
• This can lead to muddling the history of your branch,
thereby making it more difficult for yourself or other
developers to track the history of changes using `git
log` and/or roll back to previous states.
git rebase: pros
• To rebase, you would `git checkout feature` and
then `git rebase master`.
git rebase: pros
• To rebase, you would `git checkout feature` and
then `git rebase master`.
• Instead of creating a merge commit, rebase will move the
entire feature branch to start from the tip of the master
branch by rewriting the project history and creating brand
new commits for each commit in the original branch.
git rebase: pros
• To rebase, you would `git checkout feature` and
then `git rebase master`.
• Instead of creating a merge commit, rebase will move the
entire feature branch to start from the tip of the master
branch by rewriting the project history and creating brand
new commits for each commit in the original branch.
• The result is a singular history with no forking of the
commit history.
git rebase: cons
• Because rebase rewrites project history, you lose the
context provided by a merge commit, i.e. you won’t be
able to see when upstream changes were actually
integrated into the feature branch.
git rebase: cons
• Because rebase rewrites project history, you lose the
context provided by a merge commit, i.e. you won’t be
able to see when upstream changes were actually
integrated into the feature branch.
• More importantly, you could potentially cause extreme
difficulty by rebasing master to the tip of your feature
branch, leading git to think that your master branch’s
history has diverged from the rest
git rebase: cons
• Because rebase rewrites project history, you lose the
context provided by a merge commit, i.e. you won’t be able
to see when upstream changes were actually integrated into
the feature branch.
• More importantly, you could potentially cause extreme
difficulty by rebasing master to the tip of your feature
branch, leading git to think that your master branch’s history
has diverged from the rest
• In doing so, everyone else would still be working from the
original master branch, and both masters would need to be
merged together.
Merge conflicts
• Merge conflicts arise when two members of the same
development team work on the same file and try to merge in
their respective changes.
• The proper way to avoid merge conflicts would be to ensure that
only one branch is fully committed, pushed, and merged to
master, allowing the other branch to integrate any changes
before attempting to push and merge to master.
• If merge conflicts arise, don’t fret! Many text editors (as well as
Github) provide tools to help track down conflicts and resolve
them. Often times, it will show incoming changes juxtaposed
with the current state of your file, and allow you to choose which
to keep (one or both).

More Related Content

PDF
Git basics for beginners
PravallikaTammisetty
 
PDF
Git - An Introduction
Behzad Altaf
 
PDF
Git best practices workshop
Otto Kekäläinen
 
PDF
Introduction to Git and GitHub
Vikram SV
 
PPTX
Git and GitHub | Concept about Git and GitHub Process | Git Process overview
Rueful Robin
 
PDF
git and github
Darren Oakley
 
PPTX
Git Tutorial For Beginners | What is Git and GitHub? | DevOps Tools | DevOps ...
Simplilearn
 
PDF
Git slides
Nanyak S
 
Git basics for beginners
PravallikaTammisetty
 
Git - An Introduction
Behzad Altaf
 
Git best practices workshop
Otto Kekäläinen
 
Introduction to Git and GitHub
Vikram SV
 
Git and GitHub | Concept about Git and GitHub Process | Git Process overview
Rueful Robin
 
git and github
Darren Oakley
 
Git Tutorial For Beginners | What is Git and GitHub? | DevOps Tools | DevOps ...
Simplilearn
 
Git slides
Nanyak S
 

What's hot (20)

PPTX
Git 101 for Beginners
Anurag Upadhaya
 
PPTX
Github basics
Radoslav Georgiev
 
PPTX
Intro to git and git hub
Venkat Malladi
 
PPTX
Git - Basic Crash Course
Nilay Binjola
 
PDF
Intro to Git and GitHub
Panagiotis Papadopoulos
 
PPTX
Introduction git
Dian Sigit Prastowo
 
PDF
Github - Git Training Slides: Foundations
Lee Hanxue
 
PDF
Git training v10
Skander Hamza
 
PPTX
Git and GitHub
Md. Ahsan Habib Nayan
 
PDF
Git and github 101
Senthilkumar Gopal
 
PPTX
Git basics to advance with diagrams
Dilum Navanjana
 
PDF
Learning git
Sid Anand
 
PPT
Git basic
Emran Ul Hadi
 
PPTX
GitHub Basics - Derek Bable
"FENG "GEORGE"" YU
 
PDF
Git real slides
Lucas Couto
 
PPTX
Github
MeetPatel710
 
PDF
Introducing GitLab (September 2018)
Noa Harel
 
PDF
Introduction to Git
Yan Vugenfirer
 
PPTX
Git & GitLab
Gaurav Wable
 
PPTX
Git One Day Training Notes
glen_a_smith
 
Git 101 for Beginners
Anurag Upadhaya
 
Github basics
Radoslav Georgiev
 
Intro to git and git hub
Venkat Malladi
 
Git - Basic Crash Course
Nilay Binjola
 
Intro to Git and GitHub
Panagiotis Papadopoulos
 
Introduction git
Dian Sigit Prastowo
 
Github - Git Training Slides: Foundations
Lee Hanxue
 
Git training v10
Skander Hamza
 
Git and GitHub
Md. Ahsan Habib Nayan
 
Git and github 101
Senthilkumar Gopal
 
Git basics to advance with diagrams
Dilum Navanjana
 
Learning git
Sid Anand
 
Git basic
Emran Ul Hadi
 
GitHub Basics - Derek Bable
"FENG "GEORGE"" YU
 
Git real slides
Lucas Couto
 
Github
MeetPatel710
 
Introducing GitLab (September 2018)
Noa Harel
 
Introduction to Git
Yan Vugenfirer
 
Git & GitLab
Gaurav Wable
 
Git One Day Training Notes
glen_a_smith
 
Ad

Similar to Git and Github slides.pdf (20)

PPTX
Git Session 2K23.pptx
Eshaan35
 
PDF
Git basics
Surabhi Gupta
 
PDF
Git 101: Force-sensitive to Jedi padawan
James Ford
 
PDF
Git with the flow
Dana White
 
PDF
Git & GitHub WorkShop
SheilaJimenezMorejon
 
PPTX
Git presentation bixlabs
Bixlabs
 
PPTX
Introduction to Git and Github
Md Atique Ahmed Ziad
 
PPTX
Git more done
Kwen Peterson
 
PPTX
Working with Git
Sanghoon Hong
 
PDF
Git Init (Introduction to Git)
GDSC UofT Mississauga
 
PPTX
MakingGitWorkForYou
Kwen Peterson
 
PPTX
An introduction to Git
Muhil Vannan
 
ODP
Git tech talk
razasayed
 
PPTX
Git like a pro EDD18 - Full edition
Jesús Miguel Benito Calzada
 
PDF
Git tutorial
mobaires
 
PDF
Source Code Management with Git
Things Lab
 
PPTX
Intro to Git and Github
Andrew Babiec
 
PDF
Advanced Git Tutorial
Sage Sharp
 
PPTX
Git_new.pptx
BruceLee275640
 
PPTX
Git first steps
IgorSteinmacher
 
Git Session 2K23.pptx
Eshaan35
 
Git basics
Surabhi Gupta
 
Git 101: Force-sensitive to Jedi padawan
James Ford
 
Git with the flow
Dana White
 
Git & GitHub WorkShop
SheilaJimenezMorejon
 
Git presentation bixlabs
Bixlabs
 
Introduction to Git and Github
Md Atique Ahmed Ziad
 
Git more done
Kwen Peterson
 
Working with Git
Sanghoon Hong
 
Git Init (Introduction to Git)
GDSC UofT Mississauga
 
MakingGitWorkForYou
Kwen Peterson
 
An introduction to Git
Muhil Vannan
 
Git tech talk
razasayed
 
Git like a pro EDD18 - Full edition
Jesús Miguel Benito Calzada
 
Git tutorial
mobaires
 
Source Code Management with Git
Things Lab
 
Intro to Git and Github
Andrew Babiec
 
Advanced Git Tutorial
Sage Sharp
 
Git_new.pptx
BruceLee275640
 
Git first steps
IgorSteinmacher
 
Ad

Recently uploaded (20)

PPTX
How to Build a Scalable Micro-Investing Platform in 2025 - A Founder’s Guide ...
Third Rock Techkno
 
PDF
CIFDAQ'S Market Insight: BTC to ETH money in motion
CIFDAQ
 
PDF
Orbitly Pitch Deck|A Mission-Driven Platform for Side Project Collaboration (...
zz41354899
 
PPTX
cloud computing vai.pptx for the project
vaibhavdobariyal79
 
PPTX
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
PDF
CIFDAQ's Token Spotlight: SKY - A Forgotten Giant's Comeback?
CIFDAQ
 
PDF
GYTPOL If You Give a Hacker a Host
linda296484
 
PDF
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
PPTX
Smart Infrastructure and Automation through IoT Sensors
Rejig Digital
 
PPTX
ChatGPT's Deck on The Enduring Legacy of Fax Machines
Greg Swan
 
PDF
agentic-ai-and-the-future-of-autonomous-systems.pdf
siddharthnetsavvies
 
PDF
REPORT: Heating appliances market in Poland 2024
SPIUG
 
PDF
Software Development Methodologies in 2025
KodekX
 
PDF
NewMind AI Weekly Chronicles - July'25 - Week IV
NewMind AI
 
PDF
CIFDAQ's Teaching Thursday: Moving Averages Made Simple
CIFDAQ
 
PDF
Event Presentation Google Cloud Next Extended 2025
minhtrietgect
 
PDF
Google I/O Extended 2025 Baku - all ppts
HusseinMalikMammadli
 
PDF
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
Artjoker Software Development Company
 
PPT
L2 Rules of Netiquette in Empowerment technology
Archibal2
 
PDF
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Principled Technologies
 
How to Build a Scalable Micro-Investing Platform in 2025 - A Founder’s Guide ...
Third Rock Techkno
 
CIFDAQ'S Market Insight: BTC to ETH money in motion
CIFDAQ
 
Orbitly Pitch Deck|A Mission-Driven Platform for Side Project Collaboration (...
zz41354899
 
cloud computing vai.pptx for the project
vaibhavdobariyal79
 
New ThousandEyes Product Innovations: Cisco Live June 2025
ThousandEyes
 
CIFDAQ's Token Spotlight: SKY - A Forgotten Giant's Comeback?
CIFDAQ
 
GYTPOL If You Give a Hacker a Host
linda296484
 
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
Smart Infrastructure and Automation through IoT Sensors
Rejig Digital
 
ChatGPT's Deck on The Enduring Legacy of Fax Machines
Greg Swan
 
agentic-ai-and-the-future-of-autonomous-systems.pdf
siddharthnetsavvies
 
REPORT: Heating appliances market in Poland 2024
SPIUG
 
Software Development Methodologies in 2025
KodekX
 
NewMind AI Weekly Chronicles - July'25 - Week IV
NewMind AI
 
CIFDAQ's Teaching Thursday: Moving Averages Made Simple
CIFDAQ
 
Event Presentation Google Cloud Next Extended 2025
minhtrietgect
 
Google I/O Extended 2025 Baku - all ppts
HusseinMalikMammadli
 
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
Artjoker Software Development Company
 
L2 Rules of Netiquette in Empowerment technology
Archibal2
 
Security features in Dell, HP, and Lenovo PC systems: A research-based compar...
Principled Technologies
 

Git and Github slides.pdf

  • 1. Git and Github A developer’s best friend
  • 3. What is Git? • Git is a Version Control System (VCS) designed to make it easier to have multiple versions of a code base, sometimes across multiple developers or teams !3
  • 4. What is Git? • Git is a Version Control System (VCS) designed to make it easier to have multiple versions of a code base, sometimes across multiple developers or teams • It allows you to see changes you make to your code and easily revert them. !4
  • 5. What is Git? • Git is a Version Control System (VCS) designed to make it easier to have multiple versions of a code base, sometimes across multiple developers or teams • It allows you to see changes you make to your code and easily revert them. • It is NOT GITHUB! !5
  • 6. Ok, then what is Github? • Github.com is a website that hosts git repositories on a remote server !6
  • 7. Ok, then what is Github? • Github.com is a website that hosts git repositories on a remote server • Hosting repositories on Github facilitates the sharing of codebases among teams by providing a GUI to easily fork or clone repos to a local machine !7
  • 8. Ok, then what is Github? • Github.com is a website that hosts git repositories on a remote server • Hosting repositories on Github facilitates the sharing of codebases among teams by providing a GUI to easily fork or clone repos to a local machine • By pushing your repositories to Github, you will pretty much automatically create your own developer portfolio as well! !8
  • 9. Confirm that you have git • Open your terminal and run ‘git’ • If you see a ‘command not recognized’ error, you probably haven’t installed git yet. • We can solve your issue when the lectures are over - sit tight for now!
  • 10. Configuring git Your commits will have your name and email attached to them. To confirm that this information is correct, run the following commands: $ git config --global user.name > should be your name, i.e. Jon Rosado $ git config --global user.email > should be your email, i.e. [email protected] To fix either, just add the desired value in quotes after the command: $ git config --global user.name “Jon Rosado” $ git config --global user.email “[email protected]"
  • 11. Using Git / Github
  • 12. Connecting git with Github • In order to prevent having to enter your password each time you push up to Github, you must configure git and Github to recognize Secured Shell (SSH) keys that you generate. • To check and see if you have any recognized SSH keys active on Github, go to https://github.com/settings/keys • If you do not see any SSH keys listed, you do not have SSH configured with Github. We can assist with this later. • If using Mac OS X, you can also configure your keychain to automatically enter your password via HTTPS.
  • 13. Connecting git with Github • From your project directory, run `git init` to initialize a git repository. • Go to Github, and create a new repository with the name of your project. • Follow the instructions on Github to connect your initialized git repository to the remote server on Github. • *Please Note: you must have files in your project directory to commit in order to push anything to your remote server.
  • 14. Basic git / Github workflow • From your project repo on Github, navigate to the Issues tab and create a new Issue • From the command line, use git to create a new branch off of master to make your edits to. To tie the branch to your issue on Github, make sure to include the issue number after the branch name, e.g. branchName #1 • Stage edits to be committed to your git repository by using `git add <file name>` to track the files that you want to add directly or `git add .` to add all files at the current directory level that you have worked on. • Commit changes using `git commit -m <message>` and be sure to leave a short but descriptive message detailing what the commit will change when merged to the master branch. • Push changes to save them by using `git push origin <branch name>`
  • 15. Basic git / Github workflow • On Github, create a new pull request for the branch that you have just pushed, and add any clarifying comments that you deem necessary. • In order to close the issue associated with the pull request, tell GitHub to do so by adding ‘closes <issue number>’ in the comments. (you can also use ‘closed, fix, fixes, resolve, resolves, and resolved’ before the issue number as well). • Github will automatically check for merge conflicts. If there are any, check to see what they are and resolve them. • Once everything is up to date, Github will allow you to merge using three separate options: Merge; Squash and Merge; Rebase and Merge.
  • 16. git branching • git branch to view current branches in repo • git checkout -b <branch name> to create a new branch with branch name • git checkout <branch name> without ‘-b’ flag to switch to existing branches
  • 17. Merging vs Rebasing • From a conceptual standpoint, git merge and git rebase are used to achieve the same ultimate goal: to integrate changes from one branch into another branch. There are, however, distinct mechanics to both methods. • We will be discussing how to use each from the context of adding changes from your master branch into your current working feature branch.
  • 18. git merge: pros • Generally the easiest option to merge your master branch into your current working feature branch.
  • 19. git merge: pros • Generally the easiest option to merge your master branch into your current working feature branch. • You can `git checkout feature` and then `git merge master` or you could just do it with one command: git merge feature master
  • 20. git merge: pros • Generally the easiest option to merge your master branch into your current working feature branch. • You can `git checkout feature` and then `git merge master` or you could just do it with one command: git merge feature master • By doing this, you create a new ‘merge commit’ in your feature branch, which is a non-destructive operation that ties the histories of both branches. This preserves the exact history of your project
  • 21. git merge: cons • The branch that you merge will always have an extraneous merge commit that will be tracked every time you need to incorporate upstream states.
  • 22. git merge: cons • The branch that you merge will always have an extraneous merge commit that will be tracked every time you need to incorporate upstream states. • In other words, it essentially creates a forked history at the point where you merge.
  • 23. git merge: cons • The branch that you merge will always have an extraneous merge commit that will be tracked every time you need to incorporate upstream states. • In other words, it essentially creates a forked history at the point where you merge. • This can lead to muddling the history of your branch, thereby making it more difficult for yourself or other developers to track the history of changes using `git log` and/or roll back to previous states.
  • 24. git rebase: pros • To rebase, you would `git checkout feature` and then `git rebase master`.
  • 25. git rebase: pros • To rebase, you would `git checkout feature` and then `git rebase master`. • Instead of creating a merge commit, rebase will move the entire feature branch to start from the tip of the master branch by rewriting the project history and creating brand new commits for each commit in the original branch.
  • 26. git rebase: pros • To rebase, you would `git checkout feature` and then `git rebase master`. • Instead of creating a merge commit, rebase will move the entire feature branch to start from the tip of the master branch by rewriting the project history and creating brand new commits for each commit in the original branch. • The result is a singular history with no forking of the commit history.
  • 27. git rebase: cons • Because rebase rewrites project history, you lose the context provided by a merge commit, i.e. you won’t be able to see when upstream changes were actually integrated into the feature branch.
  • 28. git rebase: cons • Because rebase rewrites project history, you lose the context provided by a merge commit, i.e. you won’t be able to see when upstream changes were actually integrated into the feature branch. • More importantly, you could potentially cause extreme difficulty by rebasing master to the tip of your feature branch, leading git to think that your master branch’s history has diverged from the rest
  • 29. git rebase: cons • Because rebase rewrites project history, you lose the context provided by a merge commit, i.e. you won’t be able to see when upstream changes were actually integrated into the feature branch. • More importantly, you could potentially cause extreme difficulty by rebasing master to the tip of your feature branch, leading git to think that your master branch’s history has diverged from the rest • In doing so, everyone else would still be working from the original master branch, and both masters would need to be merged together.
  • 30. Merge conflicts • Merge conflicts arise when two members of the same development team work on the same file and try to merge in their respective changes. • The proper way to avoid merge conflicts would be to ensure that only one branch is fully committed, pushed, and merged to master, allowing the other branch to integrate any changes before attempting to push and merge to master. • If merge conflicts arise, don’t fret! Many text editors (as well as Github) provide tools to help track down conflicts and resolve them. Often times, it will show incoming changes juxtaposed with the current state of your file, and allow you to choose which to keep (one or both).