ºÝºÝߣ

ºÝºÝߣShare a Scribd company logo
Git Basic
Introduction of GIT
Created By: Ryan Pramana
What is GIT?
Git is the most popular version control system. Git tracks the changes you make to
?les, so you have a record of what has been done, and you can revert to speci?c
versions should you ever need to. With version control system, we can track software
development history and also can easily do collaborative work.
Git As a Distributed Version Control System
Local Repository Work?ow
Repository (¡°Repo¡±) is object database of the project, storing everything
needed from the project such as ?le, folder, version, history of commits,
deletions, etc
Local Repository Work?ow
Index - Files that have been changed, added and deleted will be staged
within the index until you are ready to commit the ?les. To see what is set in
your Git index, run git status within your repository
Head - a reference variable used to denote the most current commit of the
repository in which you are working
git add <filename>
git add *
git commit -m "Commit message"
Remote Repository Work?ow
git remote add origin <server>
git push origin master
Branching Command
git checkout -b <branch-name>
git checkout <branch-name>
git branch -d feature_x
git push origin <branch>
Create new branch
Switch to spesi?c
branch
Delete branch
Push branch to
remote repo
Update and Merge
git pull
git merge <branch>
git add <filename>
git diff <source_branch>
<target_branch>
Update Git
Merge another branch to
current branch
Add merged ?le
Check con?ict
Merging Best Practice (Especially for production stage)
¡ñ Merge Origin/master to your branch ?rst
¡ñ Resolve con?ict in your branch and make sure all code works well (tips: do
sanity check)
¡ñ push merged code in your branch
¡ñ switch to master branch
¡ñ merge the prev mergered code to master (in this merge state, there is no
con?ict will occur because all con?ict already solved in prev merge)
Replace local changes (In case did something wrong)
git checkout -- <filename>
git fetch origin
git reset --hard origin/master
Replace ?le with last content
in HEAD
Drop all local
changes and
fetch from latest
remote repo
Remote version control system
GITAcsess Application
Demo GitKraken
Reference
¡ñ https://www.freecodecamp.org/news/what-is-git-and-how-to-use-it-c341b049ae
61/
¡ñ https://www.youtube.com/watch?v=2ReR1YJrNOM
¡ñ https://www.nobledesktop.com/blog/what-is-git-and-why-should-you-use-it
¡ñ https://rogerdudler.github.io/git-guide/
¡ñ https://acloudguru.com/blog/engineering/git-terms-explained#index

More Related Content

Similar to Git basic introduction & tutorial for begginer (20)

Git and Github
Git and GithubGit and Github
Git and Github
Teodora Ahkozidou
?
Advanced Web Development in PHP - Code Versioning and Branching with Git
Advanced Web Development in PHP - Code Versioning and Branching with GitAdvanced Web Development in PHP - Code Versioning and Branching with Git
Advanced Web Development in PHP - Code Versioning and Branching with Git
Rasan Samarasinghe
?
Git and github
Git and githubGit and github
Git and github
Teodora Ahkozidou
?
Git cheat sheet
Git cheat sheetGit cheat sheet
Git cheat sheet
Lam Hoang
?
Git slides
Git slidesGit slides
Git slides
Nanyak S
?
Git and Github workshop GDSC MLRITM
Git and Github  workshop GDSC MLRITMGit and Github  workshop GDSC MLRITM
Git and Github workshop GDSC MLRITM
gdsc13
?
GIT.pptx
GIT.pptxGIT.pptx
GIT.pptx
Soumen Debgupta
?
Collaborative development with Git | Workshop
Collaborative development with Git | WorkshopCollaborative development with Git | Workshop
Collaborative development with Git | Workshop
Anuchit Chalothorn
?
Version control git day03
Version control   git day03Version control   git day03
Version control git day03
Gourav Varma
?
Git basics for beginners
Git basics for beginnersGit basics for beginners
Git basics for beginners
PravallikaTammisetty
?
Git Tutorial For Beginners | What is Git and GitHub? | DevOps Tools | DevOps ...
Git Tutorial For Beginners | What is Git and GitHub? | DevOps Tools | DevOps ...Git Tutorial For Beginners | What is Git and GitHub? | DevOps Tools | DevOps ...
Git Tutorial For Beginners | What is Git and GitHub? | DevOps Tools | DevOps ...
Simplilearn
?
Version control git day02
Version control   git day02Version control   git day02
Version control git day02
Gourav Varma
?
SVN 2 Git
SVN 2 GitSVN 2 Git
SVN 2 Git
Marco De Stefano
?
Git introduction
Git introductionGit introduction
Git introduction
satyendrajaladi
?
Git and Github - A primer
Git and Github - A primerGit and Github - A primer
Git and Github - A primer
Suryakumar Sudar
?
Git&GitHub.pptx
Git&GitHub.pptxGit&GitHub.pptx
Git&GitHub.pptx
KondiVenkatesh1
?
Demystifying Git
Demystifying GitDemystifying Git
Demystifying Git
Pablo Quiroga
?
Demystifying Git
Demystifying GitDemystifying Git
Demystifying Git
Pablo Quiroga
?
Introducing Git and git flow
Introducing Git and git flow Introducing Git and git flow
Introducing Git and git flow
Sebin Benjamin
?
Git 101
Git 101Git 101
Git 101
jayrparro
?
Advanced Web Development in PHP - Code Versioning and Branching with Git
Advanced Web Development in PHP - Code Versioning and Branching with GitAdvanced Web Development in PHP - Code Versioning and Branching with Git
Advanced Web Development in PHP - Code Versioning and Branching with Git
Rasan Samarasinghe
?
Git cheat sheet
Git cheat sheetGit cheat sheet
Git cheat sheet
Lam Hoang
?
Git and Github workshop GDSC MLRITM
Git and Github  workshop GDSC MLRITMGit and Github  workshop GDSC MLRITM
Git and Github workshop GDSC MLRITM
gdsc13
?
Collaborative development with Git | Workshop
Collaborative development with Git | WorkshopCollaborative development with Git | Workshop
Collaborative development with Git | Workshop
Anuchit Chalothorn
?
Version control git day03
Version control   git day03Version control   git day03
Version control git day03
Gourav Varma
?
Git Tutorial For Beginners | What is Git and GitHub? | DevOps Tools | DevOps ...
Git Tutorial For Beginners | What is Git and GitHub? | DevOps Tools | DevOps ...Git Tutorial For Beginners | What is Git and GitHub? | DevOps Tools | DevOps ...
Git Tutorial For Beginners | What is Git and GitHub? | DevOps Tools | DevOps ...
Simplilearn
?
Version control git day02
Version control   git day02Version control   git day02
Version control git day02
Gourav Varma
?
Introducing Git and git flow
Introducing Git and git flow Introducing Git and git flow
Introducing Git and git flow
Sebin Benjamin
?

Recently uploaded (20)

techfuturism.com-Autonomous Underwater Vehicles Navigating the Future of Ocea...
techfuturism.com-Autonomous Underwater Vehicles Navigating the Future of Ocea...techfuturism.com-Autonomous Underwater Vehicles Navigating the Future of Ocea...
techfuturism.com-Autonomous Underwater Vehicles Navigating the Future of Ocea...
Usman siddiqui
?
How AWS Encryption Key Options Impact Your Security and Compliance
How AWS Encryption Key Options Impact Your Security and ComplianceHow AWS Encryption Key Options Impact Your Security and Compliance
How AWS Encryption Key Options Impact Your Security and Compliance
Chris Bingham
?
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No KubernetesJava on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
VictorSzoltysek
?
Scalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by UdaiScalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by Udai
Udaiappa Ramachandran
?
Testing Tools for Accessibility Enhancement Part II.pptx
Testing Tools for Accessibility Enhancement Part II.pptxTesting Tools for Accessibility Enhancement Part II.pptx
Testing Tools for Accessibility Enhancement Part II.pptx
Julia Undeutsch
?
Mastering NIST CSF 2.0 - The New Govern Function.pdf
Mastering NIST CSF 2.0 - The New Govern Function.pdfMastering NIST CSF 2.0 - The New Govern Function.pdf
Mastering NIST CSF 2.0 - The New Govern Function.pdf
Bachir Benyammi
?
SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...
IBsolution GmbH
?
UiPath Agentic automation with Autopilot for everyone + new features/releases
UiPath Agentic  automation with Autopilot for everyone + new features/releasesUiPath Agentic  automation with Autopilot for everyone + new features/releases
UiPath Agentic automation with Autopilot for everyone + new features/releases
DianaGray10
?
AI-Driven Digital Transformation Using Agentic AI
AI-Driven Digital Transformation Using Agentic AIAI-Driven Digital Transformation Using Agentic AI
AI-Driven Digital Transformation Using Agentic AI
Kris Verlaenen
?
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptxRBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
quinlan4
?
Let's Create a GitHub Copilot Extension! - Nick Taylor, Pomerium
Let's Create a GitHub Copilot Extension! - Nick Taylor, PomeriumLet's Create a GitHub Copilot Extension! - Nick Taylor, Pomerium
Let's Create a GitHub Copilot Extension! - Nick Taylor, Pomerium
All Things Open
?
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AIGDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
James Anderson
?
202408_JAWSPANKRATION_Introduction_of_Minaden.pdf
202408_JAWSPANKRATION_Introduction_of_Minaden.pdf202408_JAWSPANKRATION_Introduction_of_Minaden.pdf
202408_JAWSPANKRATION_Introduction_of_Minaden.pdf
NTTDOCOMO-ServiceInnovation
?
Safer¡¯s Picks: The 6 FME Transformers You Didn¡¯t Know You Needed
Safer¡¯s Picks: The 6 FME Transformers You Didn¡¯t Know You NeededSafer¡¯s Picks: The 6 FME Transformers You Didn¡¯t Know You Needed
Safer¡¯s Picks: The 6 FME Transformers You Didn¡¯t Know You Needed
Safe Software
?
Securely Serving Millions of Boot Artifacts a Day by Joa?o Pedro Lima & Matt ...
Securely Serving Millions of Boot Artifacts a Day by Joa?o Pedro Lima & Matt ...Securely Serving Millions of Boot Artifacts a Day by Joa?o Pedro Lima & Matt ...
Securely Serving Millions of Boot Artifacts a Day by Joa?o Pedro Lima & Matt ...
ScyllaDB
?
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & TradeoffsAchieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
ScyllaDB
?
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service SuperpowersWhen Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
Eric D. Schabell
?
Graphs & GraphRAG - Essential Ingredients for GenAI
Graphs & GraphRAG - Essential Ingredients for GenAIGraphs & GraphRAG - Essential Ingredients for GenAI
Graphs & GraphRAG - Essential Ingredients for GenAI
Neo4j
?
STARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to PonderSTARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to Ponder
anupriti
?
Fast Screen Recorder v2.1.0.11 Crack Updated [April-2025]
Fast Screen Recorder v2.1.0.11 Crack Updated [April-2025]Fast Screen Recorder v2.1.0.11 Crack Updated [April-2025]
Fast Screen Recorder v2.1.0.11 Crack Updated [April-2025]
jackalen173
?
techfuturism.com-Autonomous Underwater Vehicles Navigating the Future of Ocea...
techfuturism.com-Autonomous Underwater Vehicles Navigating the Future of Ocea...techfuturism.com-Autonomous Underwater Vehicles Navigating the Future of Ocea...
techfuturism.com-Autonomous Underwater Vehicles Navigating the Future of Ocea...
Usman siddiqui
?
How AWS Encryption Key Options Impact Your Security and Compliance
How AWS Encryption Key Options Impact Your Security and ComplianceHow AWS Encryption Key Options Impact Your Security and Compliance
How AWS Encryption Key Options Impact Your Security and Compliance
Chris Bingham
?
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No KubernetesJava on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
Java on AWS Without the Headaches - Fast Builds, Cheap Deploys, No Kubernetes
VictorSzoltysek
?
Scalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by UdaiScalable Multi-Agent AI with AutoGen by Udai
Scalable Multi-Agent AI with AutoGen by Udai
Udaiappa Ramachandran
?
Testing Tools for Accessibility Enhancement Part II.pptx
Testing Tools for Accessibility Enhancement Part II.pptxTesting Tools for Accessibility Enhancement Part II.pptx
Testing Tools for Accessibility Enhancement Part II.pptx
Julia Undeutsch
?
Mastering NIST CSF 2.0 - The New Govern Function.pdf
Mastering NIST CSF 2.0 - The New Govern Function.pdfMastering NIST CSF 2.0 - The New Govern Function.pdf
Mastering NIST CSF 2.0 - The New Govern Function.pdf
Bachir Benyammi
?
SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...
SAP Business Data Cloud: Was die neue SAP-L?sung f¨¹r Unternehmen und ihre Dat...
IBsolution GmbH
?
UiPath Agentic automation with Autopilot for everyone + new features/releases
UiPath Agentic  automation with Autopilot for everyone + new features/releasesUiPath Agentic  automation with Autopilot for everyone + new features/releases
UiPath Agentic automation with Autopilot for everyone + new features/releases
DianaGray10
?
AI-Driven Digital Transformation Using Agentic AI
AI-Driven Digital Transformation Using Agentic AIAI-Driven Digital Transformation Using Agentic AI
AI-Driven Digital Transformation Using Agentic AI
Kris Verlaenen
?
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptxRBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
RBM - PIXIAGE - AskPixi Page - Inpixon-MWC 2025.pptx
quinlan4
?
Let's Create a GitHub Copilot Extension! - Nick Taylor, Pomerium
Let's Create a GitHub Copilot Extension! - Nick Taylor, PomeriumLet's Create a GitHub Copilot Extension! - Nick Taylor, Pomerium
Let's Create a GitHub Copilot Extension! - Nick Taylor, Pomerium
All Things Open
?
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AIGDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
GDG Cloud Southlake #41: Shay Levi: Beyond the Hype:How Enterprises Are Using AI
James Anderson
?
Safer¡¯s Picks: The 6 FME Transformers You Didn¡¯t Know You Needed
Safer¡¯s Picks: The 6 FME Transformers You Didn¡¯t Know You NeededSafer¡¯s Picks: The 6 FME Transformers You Didn¡¯t Know You Needed
Safer¡¯s Picks: The 6 FME Transformers You Didn¡¯t Know You Needed
Safe Software
?
Securely Serving Millions of Boot Artifacts a Day by Joa?o Pedro Lima & Matt ...
Securely Serving Millions of Boot Artifacts a Day by Joa?o Pedro Lima & Matt ...Securely Serving Millions of Boot Artifacts a Day by Joa?o Pedro Lima & Matt ...
Securely Serving Millions of Boot Artifacts a Day by Joa?o Pedro Lima & Matt ...
ScyllaDB
?
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & TradeoffsAchieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
Achieving Extreme Scale with ScyllaDB: Tips & Tradeoffs
ScyllaDB
?
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service SuperpowersWhen Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
When Platform Engineers meet SREs - The Birth of O11y-as-a-Service Superpowers
Eric D. Schabell
?
Graphs & GraphRAG - Essential Ingredients for GenAI
Graphs & GraphRAG - Essential Ingredients for GenAIGraphs & GraphRAG - Essential Ingredients for GenAI
Graphs & GraphRAG - Essential Ingredients for GenAI
Neo4j
?
STARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to PonderSTARLINK-JIO-AIRTEL Security issues to Ponder
STARLINK-JIO-AIRTEL Security issues to Ponder
anupriti
?
Fast Screen Recorder v2.1.0.11 Crack Updated [April-2025]
Fast Screen Recorder v2.1.0.11 Crack Updated [April-2025]Fast Screen Recorder v2.1.0.11 Crack Updated [April-2025]
Fast Screen Recorder v2.1.0.11 Crack Updated [April-2025]
jackalen173
?

Git basic introduction & tutorial for begginer

  • 1. Git Basic Introduction of GIT Created By: Ryan Pramana
  • 2. What is GIT? Git is the most popular version control system. Git tracks the changes you make to ?les, so you have a record of what has been done, and you can revert to speci?c versions should you ever need to. With version control system, we can track software development history and also can easily do collaborative work.
  • 3. Git As a Distributed Version Control System
  • 4. Local Repository Work?ow Repository (¡°Repo¡±) is object database of the project, storing everything needed from the project such as ?le, folder, version, history of commits, deletions, etc
  • 5. Local Repository Work?ow Index - Files that have been changed, added and deleted will be staged within the index until you are ready to commit the ?les. To see what is set in your Git index, run git status within your repository Head - a reference variable used to denote the most current commit of the repository in which you are working git add <filename> git add * git commit -m "Commit message"
  • 6. Remote Repository Work?ow git remote add origin <server> git push origin master
  • 7. Branching Command git checkout -b <branch-name> git checkout <branch-name> git branch -d feature_x git push origin <branch> Create new branch Switch to spesi?c branch Delete branch Push branch to remote repo
  • 8. Update and Merge git pull git merge <branch> git add <filename> git diff <source_branch> <target_branch> Update Git Merge another branch to current branch Add merged ?le Check con?ict
  • 9. Merging Best Practice (Especially for production stage) ¡ñ Merge Origin/master to your branch ?rst ¡ñ Resolve con?ict in your branch and make sure all code works well (tips: do sanity check) ¡ñ push merged code in your branch ¡ñ switch to master branch ¡ñ merge the prev mergered code to master (in this merge state, there is no con?ict will occur because all con?ict already solved in prev merge)
  • 10. Replace local changes (In case did something wrong) git checkout -- <filename> git fetch origin git reset --hard origin/master Replace ?le with last content in HEAD Drop all local changes and fetch from latest remote repo
  • 14. Reference ¡ñ https://www.freecodecamp.org/news/what-is-git-and-how-to-use-it-c341b049ae 61/ ¡ñ https://www.youtube.com/watch?v=2ReR1YJrNOM ¡ñ https://www.nobledesktop.com/blog/what-is-git-and-why-should-you-use-it ¡ñ https://rogerdudler.github.io/git-guide/ ¡ñ https://acloudguru.com/blog/engineering/git-terms-explained#index