SlideShare a Scribd company logo
Git for Visual Studio Developers
De dotNed - Pluralsight Studiegroep
Pluralsight studiegroep git for visual studio developers
Agenda
Wednesday, February 3rd - 19:00
Course Introduction
Git vs Centralized Version Control
Wednesday, February 10th - 19:00
Working With Visual Studio
Wednesday, February 17th - 19:00
TFS 2013
Wednesday, February 24th - 19:00
Pull Requests
CodeLens
Wednesday, February 2nd - 19:00
Advanced Git
Agenda Today
Introductions
Course Introduction
Git vs Centralized Version Control
Let’s practice Git
Feedback Board
WIFI: Delta-N guest
ww: laanvanwaalhaven450
About
Mark van den Berg
markberg.wordpress.com
@markvandenberg
markvdb@delta-n.nl
16 years in business
ALM Consultant with developer
background
TFS Specialist
Scrum Master
C#/.NET developer
Scrum/Kanban, ALM
Git 2,5 years
Who are you?
Please introduce yourself
Organization
Role
Experience with Git
7
Feedback Board
Discuss remarks
Let’s practice
Install Git and tools
Git: https://git-scm.com/downloads
GUI’s https://git-scm.com/downloads/guis
SourceTree
Git Extensions
SmartGit
Merge/Diff Tools
KDiff3 http://kdiff3.sourceforge.net
P4Merge https://www.perforce.com/downloads
>git help <command>
Setting up Git
Config in 3 locations
<repo>/.git/config
~/.gitconfig (Users<user>.gitconfig) --global
<git install>/etc/gitconfig
>git config
>git config --global user.name <name>
>git config --global user.email <email>
>git config --global core.editor notepad++
git config --global --edit
Setting up a repository
>git init
>git init <directory>
>git init --bare <directory>
>git clone <repo>
>git clone <repo> <directory>
>git clone https://github.com/markvandenberg/gittutorial.git
>git remote [-v]
>git remote add <name> <url>
>git remote rm <name>
>git remote rename <old-name> <new-name>
Saving Changes
>git add
>git add <file>
>git add <directory>
>git add .
>git commit
> git commit
>git commit -m "<message>“
>git commit --amend
Inspecting a Repository
>git status
>git log
>git log -n <limit>
>git log –oneline
>git log –stat
>git reflog
>git checkout
>git checkout master
>git checkout <commit> <file>
>git checkout <commit> (commit hash or tag)
Undoing Changes
>git checkout
>git checkout master
>git revert <commit>
>git reset <file>
>git reset [--hard]
>git reset [--hard] <commit>
>git clean
>git clean –n
>git clean -f
Using Branches
>git branch
>git branch <branch>
>git branch -d <branch>
>git checkout -b <new-branch>
>git merge <branch>
git merge --no-ff <branch>
Syncing
>git fetch<remote>
>git fetch <remote> <branch>
>git pull <remote>
>git pull --rebase <remote>
>git push <remote> <branch>
>git push <remote> --force
>git push <remote> --all
>git push <remote> --tags
Rewriting history
>git commit --amend
>git rebase <base>
>git rebase -i <base>
Links
https://app.pluralsight.com/library/courses/git-visual-studio-
developers/table-of-contents
https://training.github.com/kit/downloads/github-git-cheat-sheet.pdf
https://www.atlassian.com/git/tutorials/
https://msdn.microsoft.com/Library/vs/alm/Code/git/
See you next time!
Wednesday, February 10th - 19:00
Thank you!
About Delta-N
Microsoft Cloud Partner
Delta-N BV Volg ons:
Laan van Waalhaven 450 Twitter: https://twitter.com/DeltaNBV
2497 GR Den Haag Facebook: www.facebook.com/pages/Delta-N-BV
085 – 487 52 00 Blogs: www.delta-n.nl/blogs-medewerkers
info@delta-n.nl Linkedin: www.linkedin.com/company/delta-n
www.delta-n.nl Slideshare: www.slideshare.net/deltanbv

More Related Content

PPTX
1. hg init – a mercurial tutorial by tortoies hg ground up mercurial
PPTX
Git - the stupid content tracker
PDF
Formation git
PPTX
Integrating Bitbutket into Rstudio-server
PDF
Docker containers en cross platform development
PDF
Integratie Office 365 en moodle
PDF
Cross platform apps bouwen met visual studio online build vNext
PDF
Office 365 journaal 12 oktober 2016
1. hg init – a mercurial tutorial by tortoies hg ground up mercurial
Git - the stupid content tracker
Formation git
Integrating Bitbutket into Rstudio-server
Docker containers en cross platform development
Integratie Office 365 en moodle
Cross platform apps bouwen met visual studio online build vNext
Office 365 journaal 12 oktober 2016

Viewers also liked (20)

PDF
Grip op mobiel werken
PDF
Migreren naar een cloud-based ontwikkelomgeving (Visual Studio Online)
PDF
Scrum round table DevOps & Scrum
PDF
Continuous Delivery en Tools
PDF
CloudOS_boekje
PDF
Innovatie in het onderwijs met Office 365
PDF
De moderne school Microsofts visie op het onderwijs
PDF
Enterprise Mobility Suite
PDF
Productiever in de Microsoft Cloud
PDF
Webinar OneNote in het onderwijs
PDF
De cloud als platform Azure IaaS - Cloud Seminar
PDF
Simac Wegwijzer_Definitief
PDF
Continuous Deployment in Scrum
PDF
Onderwijs & Innovatie
PDF
Webinar Office 365 Power BI
PDF
Delivering Digital Transformation via DevOps
PDF
Dynamics CRM and Office 365 integration
PPTX
Macaw kennissessie Cloud - werkplek van de toekomst, vandaag
PDF
Scrum Round Table - Value Stream Mapping
PDF
Deployment Automation in de praktijk
Grip op mobiel werken
Migreren naar een cloud-based ontwikkelomgeving (Visual Studio Online)
Scrum round table DevOps & Scrum
Continuous Delivery en Tools
CloudOS_boekje
Innovatie in het onderwijs met Office 365
De moderne school Microsofts visie op het onderwijs
Enterprise Mobility Suite
Productiever in de Microsoft Cloud
Webinar OneNote in het onderwijs
De cloud als platform Azure IaaS - Cloud Seminar
Simac Wegwijzer_Definitief
Continuous Deployment in Scrum
Onderwijs & Innovatie
Webinar Office 365 Power BI
Delivering Digital Transformation via DevOps
Dynamics CRM and Office 365 integration
Macaw kennissessie Cloud - werkplek van de toekomst, vandaag
Scrum Round Table - Value Stream Mapping
Deployment Automation in de praktijk
Ad

Similar to Pluralsight studiegroep git for visual studio developers (20)

PDF
Git - An Introduction
PDF
Managing e commerce systems codebase with git
PPTX
Introduction into Git
ODP
GIT from n00b
PPTX
Git Ninja KT (GitHub to GitLab)
PPTX
2015-ghci-presentation-git_gerritJenkins_final
PDF
GIT_In_90_Minutes
PDF
GDSC GIT AND GITHUB
PDF
Pro git - grasping it conceptually
PDF
Git and github - Verson Control for the Modern Developer
PDF
Git with the flow
PPTX
Git and GitHub
PPTX
Open Source_Git.pptx
PPTX
git - the basics
PDF
Git 入门 与 实践
PPT
Git and fundamentals
PPTX
KEY
Git Acquainted
Git - An Introduction
Managing e commerce systems codebase with git
Introduction into Git
GIT from n00b
Git Ninja KT (GitHub to GitLab)
2015-ghci-presentation-git_gerritJenkins_final
GIT_In_90_Minutes
GDSC GIT AND GITHUB
Pro git - grasping it conceptually
Git and github - Verson Control for the Modern Developer
Git with the flow
Git and GitHub
Open Source_Git.pptx
git - the basics
Git 入门 与 实践
Git and fundamentals
Git Acquainted
Ad

More from Delta-N (20)

PDF
Azure DevOps Update Juni 2025: news en best practices
PDF
Techorama Event Based Architecture Chris van Zadel.pdf
PDF
Webinar Azure DevOps Update Slides mei 2024.pdf
PDF
Azure DevOps Update: nieuws en best practices - februari 2024.pdf
PDF
Webinar overstap van DevOps naar GitHub.pdf
PDF
Techorama Healthcare & AI Roderick Schoon2.pdf
PDF
Nieuw in Azure DevOps.pdf
PDF
Webinar Github Workitem management.pdf
PDF
Webinar Microsoft Teams Phone - december 2022
PPTX
Webinar Praktische stappen om je release frequentie te verhogen
PPTX
Webinar - Digitaal Samenwerken op een hybride manier.pptx
PPTX
Microsoft 365 journaal November 2022
PDF
Practical steps to increase deployment frequency
PPTX
Nieuw In Azure DevOps webinar - 7-10-2022.pptx
PPTX
Webinars TOPdesk - AzureDevOps UK.pptx
PPTX
Microsoft 365 journaal juni 2022.pptx
PDF
Webinar product backlog management.pdf
PPTX
Starten met Azure 20 mei 2022.pptx
PDF
Nieuw in Azure DevOps - 8 april 2022pdf
PDF
TOPdesk - Azure DevOps webinar maart2022.pdf
Azure DevOps Update Juni 2025: news en best practices
Techorama Event Based Architecture Chris van Zadel.pdf
Webinar Azure DevOps Update Slides mei 2024.pdf
Azure DevOps Update: nieuws en best practices - februari 2024.pdf
Webinar overstap van DevOps naar GitHub.pdf
Techorama Healthcare & AI Roderick Schoon2.pdf
Nieuw in Azure DevOps.pdf
Webinar Github Workitem management.pdf
Webinar Microsoft Teams Phone - december 2022
Webinar Praktische stappen om je release frequentie te verhogen
Webinar - Digitaal Samenwerken op een hybride manier.pptx
Microsoft 365 journaal November 2022
Practical steps to increase deployment frequency
Nieuw In Azure DevOps webinar - 7-10-2022.pptx
Webinars TOPdesk - AzureDevOps UK.pptx
Microsoft 365 journaal juni 2022.pptx
Webinar product backlog management.pdf
Starten met Azure 20 mei 2022.pptx
Nieuw in Azure DevOps - 8 april 2022pdf
TOPdesk - Azure DevOps webinar maart2022.pdf

Recently uploaded (20)

PDF
Digital Strategies for Manufacturing Companies
PDF
How Creative Agencies Leverage Project Management Software.pdf
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PPTX
Introduction to Artificial Intelligence
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PPTX
Reimagine Home Health with the Power of Agentic AI​
PPTX
CHAPTER 2 - PM Management and IT Context
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PPTX
Essential Infomation Tech presentation.pptx
PDF
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
Digital Strategies for Manufacturing Companies
How Creative Agencies Leverage Project Management Software.pdf
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
Introduction to Artificial Intelligence
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
Design an Analysis of Algorithms II-SECS-1021-03
Reimagine Home Health with the Power of Agentic AI​
CHAPTER 2 - PM Management and IT Context
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Essential Infomation Tech presentation.pptx
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
Which alternative to Crystal Reports is best for small or large businesses.pdf
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Adobe Illustrator 28.6 Crack My Vision of Vector Design
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Upgrade and Innovation Strategies for SAP ERP Customers

Pluralsight studiegroep git for visual studio developers