git workshop
A Presentation By Agustinus Theodorus
Tools Used
LET’S DO GIT!
git remote <command> <remote name> <repo link>
This is used to view available remotes or to set new remotes.
git remote
git fetch
Fetch is used to download all remotes and tags to the local repositories.
git fetch
git pull <remote name> <branch name>
Pull is used to update local repositories and pull code from remote to the workspace.
git pull
git clone
git clone <repo link>
Clone sets a repository's origin remote and downloads everything from the remote repository to the local repository
and workspace.
git clone
git clone
git add <filepath>
This command is used to stage changes.
git add
git status
This command is used to check if the local repositories and the workspace have changes or modifications.
git status
git commit -m "enter a commit message"
This command is used to commit staged changes to the local repository.
Commiting changes need a commit message, use -m to add commit messages.
git commit
git push <remote name> <branch name>
This command is used to push committed local changes to the repository.
git push
Image from Fiverr
https://qrgo.page.link/5hF4G
Slide Link

More Related Content

PPT
Git Atlrug
PPT
Git102
PPTX
Git undo
PPTX
Version control system & how to use git
PDF
Introduction to Git for Artists
DOCX
Git github
PPT
Git Cards - Keynote Format
PDF
Pengenalan Git
Git Atlrug
Git102
Git undo
Version control system & how to use git
Introduction to Git for Artists
Git github
Git Cards - Keynote Format
Pengenalan Git

What's hot (17)

ODP
Mr.Crabs Git workflow
PDF
Introduction to Git
PDF
Git cheat sheet
PPT
Git Cards - Powerpoint Format
PPTX
Extra bit with git
PDF
Advance workshop on git
PPTX
Git in 10 minutes
PPSX
Advanced Web Development in PHP - Code Versioning and Branching with Git
PDF
Git Tricks
PDF
A Simple Introduction to Git
PDF
Tài liệu sử dụng GitHub
PDF
Git Tricks — git utilities that make life git easier
PDF
Git cheat-sheet
ODP
DrupalCafe5 VCS
PDF
Git - The Incomplete Introduction
PPTX
Git hub abduallah abu nada
PDF
Introduction to Git
Mr.Crabs Git workflow
Introduction to Git
Git cheat sheet
Git Cards - Powerpoint Format
Extra bit with git
Advance workshop on git
Git in 10 minutes
Advanced Web Development in PHP - Code Versioning and Branching with Git
Git Tricks
A Simple Introduction to Git
Tài liệu sử dụng GitHub
Git Tricks — git utilities that make life git easier
Git cheat-sheet
DrupalCafe5 VCS
Git - The Incomplete Introduction
Git hub abduallah abu nada
Introduction to Git
Ad

Similar to Git Workshop (20)

PPTX
Git and GitHub
DOCX
Git cheatsheet
PPTX
Git more done
KEY
Introduction to Git
PPTX
Git One Day Training Notes
KEY
Git Tech Talk
PDF
Formation git
PDF
SVN 2 Git
PPTX
Understanding about git
PDF
Advanced Git Tutorial
PDF
Git for developers
PPT
B4usolution git git-hub
PDF
Git Init (Introduction to Git)
PDF
Git and git hub
PPT
Git basic
ODP
GIT: a Gentle InTroduction
PDF
Embedded Systems: Lecture 12: Introduction to Git & GitHub (Part 3)
ODP
Git presentation
PPTX
Introduction to Git and Github
PPTX
Git and GitHub Workshop of GDG on Campus UNSTPB
Git and GitHub
Git cheatsheet
Git more done
Introduction to Git
Git One Day Training Notes
Git Tech Talk
Formation git
SVN 2 Git
Understanding about git
Advanced Git Tutorial
Git for developers
B4usolution git git-hub
Git Init (Introduction to Git)
Git and git hub
Git basic
GIT: a Gentle InTroduction
Embedded Systems: Lecture 12: Introduction to Git & GitHub (Part 3)
Git presentation
Introduction to Git and Github
Git and GitHub Workshop of GDG on Campus UNSTPB
Ad

More from Agustinus Theodorus (7)

PDF
Introduction to HTML, CSS, and Javascript
PDF
DSC - Shared Preferences and Room
PDF
DSC - Recycle View, DiffUtil and many other things
PDF
DSC - Recycle View, DiffUtil and many other things (Slides)
PDF
Flutter Dev 2019
PDF
Introduction to Android (With a UI/UX Case Study)
PDF
Introduction to Java (and object-oriented programming)
Introduction to HTML, CSS, and Javascript
DSC - Shared Preferences and Room
DSC - Recycle View, DiffUtil and many other things
DSC - Recycle View, DiffUtil and many other things (Slides)
Flutter Dev 2019
Introduction to Android (With a UI/UX Case Study)
Introduction to Java (and object-oriented programming)

Recently uploaded (20)

PPTX
Tartificialntelligence_presentation.pptx
PDF
CloudStack 4.21: First Look Webinar slides
PDF
A comparative study of natural language inference in Swahili using monolingua...
PDF
Zenith AI: Advanced Artificial Intelligence
PDF
Taming the Chaos: How to Turn Unstructured Data into Decisions
PDF
1 - Historical Antecedents, Social Consideration.pdf
PDF
WOOl fibre morphology and structure.pdf for textiles
PDF
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
PPTX
Group 1 Presentation -Planning and Decision Making .pptx
PPTX
The various Industrial Revolutions .pptx
PDF
Assigned Numbers - 2025 - Bluetooth® Document
PPTX
observCloud-Native Containerability and monitoring.pptx
PPTX
Web Crawler for Trend Tracking Gen Z Insights.pptx
PDF
Hybrid model detection and classification of lung cancer
PDF
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
PDF
A contest of sentiment analysis: k-nearest neighbor versus neural network
PDF
Enhancing emotion recognition model for a student engagement use case through...
PPTX
Modernising the Digital Integration Hub
PPT
What is a Computer? Input Devices /output devices
PDF
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...
Tartificialntelligence_presentation.pptx
CloudStack 4.21: First Look Webinar slides
A comparative study of natural language inference in Swahili using monolingua...
Zenith AI: Advanced Artificial Intelligence
Taming the Chaos: How to Turn Unstructured Data into Decisions
1 - Historical Antecedents, Social Consideration.pdf
WOOl fibre morphology and structure.pdf for textiles
Transform Your ITIL® 4 & ITSM Strategy with AI in 2025.pdf
Group 1 Presentation -Planning and Decision Making .pptx
The various Industrial Revolutions .pptx
Assigned Numbers - 2025 - Bluetooth® Document
observCloud-Native Containerability and monitoring.pptx
Web Crawler for Trend Tracking Gen Z Insights.pptx
Hybrid model detection and classification of lung cancer
DASA ADMISSION 2024_FirstRound_FirstRank_LastRank.pdf
A contest of sentiment analysis: k-nearest neighbor versus neural network
Enhancing emotion recognition model for a student engagement use case through...
Modernising the Digital Integration Hub
What is a Computer? Input Devices /output devices
A Late Bloomer's Guide to GenAI: Ethics, Bias, and Effective Prompting - Boha...

Git Workshop