際際滷

際際滷Share a Scribd company logo
Git
Version 0.01
Important commands
 cd <directory>
 cd ~
 cd ..
 pwd # print working directory
 ls # list the files in this directory
 diff -u test.txt test2.txt ( fc in windows)
 Primitive source control
 You create new copy each time
 Version source control
 Keep track of code history
Who uses version control ?
 Google docs
 Wekipedia
 Dropbox
 Git
 Subversion (SVN)
Explain commit
When to commit?
 By function
Lets use dropbox, it automates the process
noob.. !
Key concepts
 Commit
 Blob
 diff
 Branch
 Merge
 Repository
Subversion vs git
Config username and email
 git config --global user.email "w-elatrash@hotmail.com"
 git config --global user.name Wasim Alatrash"
Two ways to start working with git
 You have a project on your local machine
 You want to clone a project from repository
 Github
 GitLab
 bitbucket
 Remote
 Cloning
 Clone
 Demo: Clone a project
Cloning/forking
 Git clone [https link]
 Git log: list latest commits ( q to skip/quit)
 Git log stat (show updated files)
 git checkout <commit hash> (to return to specific commit)
 Demo: fork a repository >update > push > pull
 Cd ..
 rm -rf [Directory]
 Git clone [directory]
 git remote v
 Show attached connections to current repository
Creating git repository
 Mkdir [directory name]
 Git init
 Git status (shows changed files since last commit)
 https://choosealicense.com/
 Vim LICENSE
 Escape then :wq to save file changes
 Vim README.md
 # headline
vim
 Vim filename -> create file and edit it using vim
 Rm [filename] -> remove a file
 Do changes to file
 Git diff
 Git add
 Git diff ( no Is empty)
 Then you have to use git log p to see the diff
 Git diff staged (to get the diff between staged and repository)
 Git reset HEAD [filename] ( to remove a file from staging area)
 Git diff [commit hash] [commit hash]
 Git show [commit hash]
Staging area
 Working directory
 Staging area (index)
 Repository
 Git add
 to add to staging area
 git reset HEAD <file>
 To remove from staging area
Ignore Files
 Passwords and secret files
 Build files
 Third party libraries that you can reinstall it using library manager
 Demo
 Vim .gitignore
 *.html
 /dir1
 Filename.txt
 Global ignore files
 https://github.com/github/gitignore
 git config --global core.excludesfile (see where its stored)
 Vim [directory/filename]
Viewing history
 Git log
 Git log -4
 Git log oneline
 Git log graph
 Git log oneline graph all
 Git shortlog (seperated by auther)
 Git log author=wasim ( filter by auther name)
 Git log grep=idea ( filter by keyword in commit messages)
 Git log  [filename] ( get all commits related to filename)
Branching
 By default: it creates master branch
 What is the branch ? Label for particular commit, and it keep moving
while you are commiting
 Commit hash help commits refer to its parent
 When to Use Branches?
 git branch [mybranch] ( create a branch)
 Git branch ( view branches )
 git checkout [mybranch] ( switch to other branch)
 git branch -d [mybranch] (delete a branch)
 * is the current branch
Merging
 Git referance for 3 points, last 2 commits in both branchs and the
commit they splited from. And calc the diff then merge the diff.
 Git merge [mybranch] ( merge mybranch to current branch)
 Git merge no-ff [mybranch] (to prevent fast forward merge)
 There are no staging area in github
 Only related commits will be pushed to github
 Create a Repository
 Init the rep with readme will create one commit, dont do that if you already
have git project stored locally and you want to push it
 Git remote
 Git remote v
 Git remote add <name> // usually called origin
 Git pull <remote> <branch-name>
 Why might you want to always pull changes manually rather than having Git
automatically stay up-to-date with your remote repository?
 Forking
 It make it easy to share you project with otherone without pulling the code >
push to new repository > then let the other developer do pull again from the
new remote
 Fork is not git command, its github innovation
 Git clone
 Git clone add remote for you automatically
 Add contributors from settings
 Get fetch origin master
 Get merge master origin/master

More Related Content

What's hot (20)

Git in a nutshell
Git in a nutshellGit in a nutshell
Git in a nutshell
Pranesh Vittal
Git tech talk
Git tech talkGit tech talk
Git tech talk
razasayed
Basic git
Basic gitBasic git
Basic git
Casper Chen
Git basics
Git basicsGit basics
Git basics
Amit Sawhney
Git: from Novice to Expert
Git: from Novice to ExpertGit: from Novice to Expert
Git: from Novice to Expert
Goddy Zhao
From svn to git
From svn to gitFrom svn to git
From svn to git
Nehal Shah
Introduction to git and github
Introduction to git and githubIntroduction to git and github
Introduction to git and github
Aderemi Dadepo
Git & github
Git & githubGit & github
Git & github
MicroPyramid .
Contributing to open source using Git
Contributing to open source using GitContributing to open source using Git
Contributing to open source using Git
Yan Vugenfirer
Introduction to Git and Github
Introduction to Git and GithubIntroduction to Git and Github
Introduction to Git and Github
Houari ZEGAI
GIT in a nutshell
GIT in a nutshellGIT in a nutshell
GIT in a nutshell
alignan
Introduction to Git and GitHub Part 1
Introduction to Git and GitHub Part 1Introduction to Git and GitHub Part 1
Introduction to Git and GitHub Part 1
Omar Fathy
Git Basics at Rails Underground
Git Basics at Rails UndergroundGit Basics at Rails Underground
Git Basics at Rails Underground
Ariejan de Vroom
Git & GitHub WorkShop
Git & GitHub WorkShopGit & GitHub WorkShop
Git & GitHub WorkShop
SheilaJimenezMorejon
Git 101 for_tarad_dev
Git 101 for_tarad_devGit 101 for_tarad_dev
Git 101 for_tarad_dev
Somkiat Puisungnoen
Git in 5 Minutes
Git in 5 MinutesGit in 5 Minutes
Git in 5 Minutes
Robert Dumas
Git: basic to advanced
Git: basic to advancedGit: basic to advanced
Git: basic to advanced
Yodalee
GIT - DUG Antwerp
GIT - DUG AntwerpGIT - DUG Antwerp
GIT - DUG Antwerp
Krimson
Command line git
Command line gitCommand line git
Command line git
Manos Emmanouilidis
The Basics of Open Source Collaboration With Git and GitHub
The Basics of Open Source Collaboration With Git and GitHubThe Basics of Open Source Collaboration With Git and GitHub
The Basics of Open Source Collaboration With Git and GitHub
BigBlueHat
Git tech talk
Git tech talkGit tech talk
Git tech talk
razasayed
Git: from Novice to Expert
Git: from Novice to ExpertGit: from Novice to Expert
Git: from Novice to Expert
Goddy Zhao
From svn to git
From svn to gitFrom svn to git
From svn to git
Nehal Shah
Introduction to git and github
Introduction to git and githubIntroduction to git and github
Introduction to git and github
Aderemi Dadepo
Contributing to open source using Git
Contributing to open source using GitContributing to open source using Git
Contributing to open source using Git
Yan Vugenfirer
Introduction to Git and Github
Introduction to Git and GithubIntroduction to Git and Github
Introduction to Git and Github
Houari ZEGAI
GIT in a nutshell
GIT in a nutshellGIT in a nutshell
GIT in a nutshell
alignan
Introduction to Git and GitHub Part 1
Introduction to Git and GitHub Part 1Introduction to Git and GitHub Part 1
Introduction to Git and GitHub Part 1
Omar Fathy
Git Basics at Rails Underground
Git Basics at Rails UndergroundGit Basics at Rails Underground
Git Basics at Rails Underground
Ariejan de Vroom
Git in 5 Minutes
Git in 5 MinutesGit in 5 Minutes
Git in 5 Minutes
Robert Dumas
Git: basic to advanced
Git: basic to advancedGit: basic to advanced
Git: basic to advanced
Yodalee
GIT - DUG Antwerp
GIT - DUG AntwerpGIT - DUG Antwerp
GIT - DUG Antwerp
Krimson
The Basics of Open Source Collaboration With Git and GitHub
The Basics of Open Source Collaboration With Git and GitHubThe Basics of Open Source Collaboration With Git and GitHub
The Basics of Open Source Collaboration With Git and GitHub
BigBlueHat

Similar to 11 git version control (20)

Git Tutorial I
Git Tutorial IGit Tutorial I
Git Tutorial I
Jim Yeh
Learn Git - For Beginners and Intermediate levels
Learn Git - For Beginners and Intermediate levelsLearn Git - For Beginners and Intermediate levels
Learn Git - For Beginners and Intermediate levels
Gorav Singal
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 One Day Training Notes
Git One Day Training NotesGit One Day Training Notes
Git One Day Training Notes
glen_a_smith
Git installation and configuration
Git installation and configurationGit installation and configuration
Git installation and configuration
Kishor Kumar
git and github
git and githubgit and github
git and github
Darren Oakley
Git workshop - University of Moratuwa, Department of Computer Science and Eng...
Git workshop - University of Moratuwa, Department of Computer Science and Eng...Git workshop - University of Moratuwa, Department of Computer Science and Eng...
Git workshop - University of Moratuwa, Department of Computer Science and Eng...
WSO2
Source Code Management with Git
Source Code Management with GitSource Code Management with Git
Source Code Management with Git
Things Lab
Introduction to git
Introduction to gitIntroduction to git
Introduction to git
Nguyen Van Hung
Introduction to Git and Github
Introduction to Git and GithubIntroduction to Git and Github
Introduction to Git and Github
Roland Emmanuel Salunga
Git training v10
Git training v10Git training v10
Git training v10
Skander Hamza
Beginner's Guide to Version Control with Git
Beginner's Guide to Version Control with GitBeginner's Guide to Version Control with Git
Beginner's Guide to Version Control with Git
Robert Lee-Cann
An introduction to Git
An introduction to GitAn introduction to Git
An introduction to Git
Muhil Vannan
Fundamentals and basics of Git and commands
Fundamentals and basics of Git and commandsFundamentals and basics of Git and commands
Fundamentals and basics of Git and commands
DivyanshGupta922023
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
Introduction to Git (part 1)
Introduction to Git (part 1)Introduction to Git (part 1)
Introduction to Git (part 1)
Salvatore Cordiano
Git-guidance for beginner- IT support.pptx.pptx
Git-guidance for beginner- IT support.pptx.pptxGit-guidance for beginner- IT support.pptx.pptx
Git-guidance for beginner- IT support.pptx.pptx
vietnguyen1989
Git-guidance for beginner- IT support.pptx
Git-guidance for beginner- IT support.pptxGit-guidance for beginner- IT support.pptx
Git-guidance for beginner- IT support.pptx
vietnguyen1989
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 is a distributed version control system .
Git is a distributed version control system .Git is a distributed version control system .
Git is a distributed version control system .
HELLOWorld889594
Git Tutorial I
Git Tutorial IGit Tutorial I
Git Tutorial I
Jim Yeh
Learn Git - For Beginners and Intermediate levels
Learn Git - For Beginners and Intermediate levelsLearn Git - For Beginners and Intermediate levels
Learn Git - For Beginners and Intermediate levels
Gorav Singal
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 One Day Training Notes
Git One Day Training NotesGit One Day Training Notes
Git One Day Training Notes
glen_a_smith
Git installation and configuration
Git installation and configurationGit installation and configuration
Git installation and configuration
Kishor Kumar
Git workshop - University of Moratuwa, Department of Computer Science and Eng...
Git workshop - University of Moratuwa, Department of Computer Science and Eng...Git workshop - University of Moratuwa, Department of Computer Science and Eng...
Git workshop - University of Moratuwa, Department of Computer Science and Eng...
WSO2
Source Code Management with Git
Source Code Management with GitSource Code Management with Git
Source Code Management with Git
Things Lab
Beginner's Guide to Version Control with Git
Beginner's Guide to Version Control with GitBeginner's Guide to Version Control with Git
Beginner's Guide to Version Control with Git
Robert Lee-Cann
An introduction to Git
An introduction to GitAn introduction to Git
An introduction to Git
Muhil Vannan
Fundamentals and basics of Git and commands
Fundamentals and basics of Git and commandsFundamentals and basics of Git and commands
Fundamentals and basics of Git and commands
DivyanshGupta922023
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
Introduction to Git (part 1)
Introduction to Git (part 1)Introduction to Git (part 1)
Introduction to Git (part 1)
Salvatore Cordiano
Git-guidance for beginner- IT support.pptx.pptx
Git-guidance for beginner- IT support.pptx.pptxGit-guidance for beginner- IT support.pptx.pptx
Git-guidance for beginner- IT support.pptx.pptx
vietnguyen1989
Git-guidance for beginner- IT support.pptx
Git-guidance for beginner- IT support.pptxGit-guidance for beginner- IT support.pptx
Git-guidance for beginner- IT support.pptx
vietnguyen1989
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 is a distributed version control system .
Git is a distributed version control system .Git is a distributed version control system .
Git is a distributed version control system .
HELLOWorld889594

More from Wasim Alatrash (12)

09 outsourcing
09 outsourcing09 outsourcing
09 outsourcing
Wasim Alatrash
11 agile project management
11 agile project management11 agile project management
11 agile project management
Wasim Alatrash
Take your client out
Take your client outTake your client out
Take your client out
Wasim Alatrash
07 proposal writing
07 proposal writing07 proposal writing
07 proposal writing
Wasim Alatrash
01 intro
01 intro01 intro
01 intro
Wasim Alatrash
Cover letter
Cover letterCover letter
Cover letter
Wasim Alatrash
04 branding
04 branding04 branding
04 branding
Wasim Alatrash
01 time management
01 time management01 time management
01 time management
Wasim Alatrash
02 intro
02 intro02 intro
02 intro
Wasim Alatrash
Habits for freelancers
Habits for freelancersHabits for freelancers
Habits for freelancers
Wasim Alatrash
03 choose your nich
03 choose your nich03 choose your nich
03 choose your nich
Wasim Alatrash
05 networking
05 networking05 networking
05 networking
Wasim Alatrash

Recently uploaded (10)

How an SBLC Provider Helps Secure Large Transactions.
How an SBLC Provider Helps Secure Large Transactions.How an SBLC Provider Helps Secure Large Transactions.
How an SBLC Provider Helps Secure Large Transactions.
General Credit Finance and Development Limited
Money Market debt Instruments final.pptx
Money Market  debt  Instruments final.pptxMoney Market  debt  Instruments final.pptx
Money Market debt Instruments final.pptx
373vishakhamodel
Armilar - Portuguese Startup Scene Report 2024
Armilar - Portuguese Startup Scene Report 2024Armilar - Portuguese Startup Scene Report 2024
Armilar - Portuguese Startup Scene Report 2024
Armilar
strategic control and corporate governance.
strategic control and corporate governance.strategic control and corporate governance.
strategic control and corporate governance.
SiddharthHemantkumar
Common Places Where Door Finger Guards Are Most Needed.pdf
Common Places Where Door Finger Guards Are Most Needed.pdfCommon Places Where Door Finger Guards Are Most Needed.pdf
Common Places Where Door Finger Guards Are Most Needed.pdf
Safety Assured
2.3market size and the Market types . pptx
2.3market size and the Market types . pptx2.3market size and the Market types . pptx
2.3market size and the Market types . pptx
BharaniRadha
BNI Weekly Meeting Presentation 2025.pptx
BNI Weekly Meeting Presentation 2025.pptxBNI Weekly Meeting Presentation 2025.pptx
BNI Weekly Meeting Presentation 2025.pptx
thinktreeindore
Indiana Filmmakers - Untapped Potential?
Indiana Filmmakers - Untapped Potential?Indiana Filmmakers - Untapped Potential?
Indiana Filmmakers - Untapped Potential?
ResQ Records | PiKture Time Films and Photography | Horizon Alliance Technologies
Satya Microcapital Empowering Through Innovation.pdf
Satya Microcapital Empowering Through Innovation.pdfSatya Microcapital Empowering Through Innovation.pdf
Satya Microcapital Empowering Through Innovation.pdf
Entrepreneur One Magazine
Understanding of land-use dynamics in vineyard toward its sustainable land ma...
Understanding of land-use dynamics in vineyard toward its sustainable land ma...Understanding of land-use dynamics in vineyard toward its sustainable land ma...
Understanding of land-use dynamics in vineyard toward its sustainable land ma...
Yuji Hara
Money Market debt Instruments final.pptx
Money Market  debt  Instruments final.pptxMoney Market  debt  Instruments final.pptx
Money Market debt Instruments final.pptx
373vishakhamodel
Armilar - Portuguese Startup Scene Report 2024
Armilar - Portuguese Startup Scene Report 2024Armilar - Portuguese Startup Scene Report 2024
Armilar - Portuguese Startup Scene Report 2024
Armilar
strategic control and corporate governance.
strategic control and corporate governance.strategic control and corporate governance.
strategic control and corporate governance.
SiddharthHemantkumar
Common Places Where Door Finger Guards Are Most Needed.pdf
Common Places Where Door Finger Guards Are Most Needed.pdfCommon Places Where Door Finger Guards Are Most Needed.pdf
Common Places Where Door Finger Guards Are Most Needed.pdf
Safety Assured
2.3market size and the Market types . pptx
2.3market size and the Market types . pptx2.3market size and the Market types . pptx
2.3market size and the Market types . pptx
BharaniRadha
BNI Weekly Meeting Presentation 2025.pptx
BNI Weekly Meeting Presentation 2025.pptxBNI Weekly Meeting Presentation 2025.pptx
BNI Weekly Meeting Presentation 2025.pptx
thinktreeindore
Satya Microcapital Empowering Through Innovation.pdf
Satya Microcapital Empowering Through Innovation.pdfSatya Microcapital Empowering Through Innovation.pdf
Satya Microcapital Empowering Through Innovation.pdf
Entrepreneur One Magazine
Understanding of land-use dynamics in vineyard toward its sustainable land ma...
Understanding of land-use dynamics in vineyard toward its sustainable land ma...Understanding of land-use dynamics in vineyard toward its sustainable land ma...
Understanding of land-use dynamics in vineyard toward its sustainable land ma...
Yuji Hara

11 git version control

  • 2. Important commands cd <directory> cd ~ cd .. pwd # print working directory ls # list the files in this directory diff -u test.txt test2.txt ( fc in windows)
  • 3. Primitive source control You create new copy each time Version source control Keep track of code history
  • 4. Who uses version control ? Google docs Wekipedia Dropbox Git Subversion (SVN)
  • 6. When to commit? By function
  • 7. Lets use dropbox, it automates the process noob.. !
  • 8. Key concepts Commit Blob diff Branch Merge Repository
  • 10. Config username and email git config --global user.email "w-elatrash@hotmail.com" git config --global user.name Wasim Alatrash"
  • 11. Two ways to start working with git You have a project on your local machine You want to clone a project from repository
  • 12. Github GitLab bitbucket
  • 13. Remote Cloning Clone Demo: Clone a project
  • 14. Cloning/forking Git clone [https link] Git log: list latest commits ( q to skip/quit) Git log stat (show updated files) git checkout <commit hash> (to return to specific commit) Demo: fork a repository >update > push > pull Cd .. rm -rf [Directory] Git clone [directory] git remote v Show attached connections to current repository
  • 15. Creating git repository Mkdir [directory name] Git init Git status (shows changed files since last commit) https://choosealicense.com/ Vim LICENSE Escape then :wq to save file changes Vim README.md # headline
  • 16. vim Vim filename -> create file and edit it using vim Rm [filename] -> remove a file
  • 17. Do changes to file Git diff Git add Git diff ( no Is empty) Then you have to use git log p to see the diff Git diff staged (to get the diff between staged and repository) Git reset HEAD [filename] ( to remove a file from staging area) Git diff [commit hash] [commit hash] Git show [commit hash]
  • 18. Staging area Working directory Staging area (index) Repository Git add to add to staging area git reset HEAD <file> To remove from staging area
  • 19. Ignore Files Passwords and secret files Build files Third party libraries that you can reinstall it using library manager Demo Vim .gitignore *.html /dir1 Filename.txt
  • 20. Global ignore files https://github.com/github/gitignore git config --global core.excludesfile (see where its stored) Vim [directory/filename]
  • 21. Viewing history Git log Git log -4 Git log oneline Git log graph Git log oneline graph all Git shortlog (seperated by auther) Git log author=wasim ( filter by auther name) Git log grep=idea ( filter by keyword in commit messages) Git log [filename] ( get all commits related to filename)
  • 22. Branching By default: it creates master branch What is the branch ? Label for particular commit, and it keep moving while you are commiting Commit hash help commits refer to its parent When to Use Branches?
  • 23. git branch [mybranch] ( create a branch) Git branch ( view branches ) git checkout [mybranch] ( switch to other branch) git branch -d [mybranch] (delete a branch) * is the current branch
  • 24. Merging Git referance for 3 points, last 2 commits in both branchs and the commit they splited from. And calc the diff then merge the diff. Git merge [mybranch] ( merge mybranch to current branch) Git merge no-ff [mybranch] (to prevent fast forward merge)
  • 25. There are no staging area in github Only related commits will be pushed to github Create a Repository Init the rep with readme will create one commit, dont do that if you already have git project stored locally and you want to push it Git remote Git remote v Git remote add <name> // usually called origin
  • 26. Git pull <remote> <branch-name> Why might you want to always pull changes manually rather than having Git automatically stay up-to-date with your remote repository? Forking It make it easy to share you project with otherone without pulling the code > push to new repository > then let the other developer do pull again from the new remote Fork is not git command, its github innovation
  • 27. Git clone Git clone add remote for you automatically Add contributors from settings Get fetch origin master Get merge master origin/master

Editor's Notes

  • #8: - Manual vs auto Commits: you should use manual to make logically right commits when you finish feature or complete update - Dropbox dont save history forever, its available for 1 month, then it will be removed!
  • #15: Git log: list latest commits rm -rf [Directory]油means油force the recursive removal of someDirectory
  • #16: 悖 惆惘惠惘 惡惠惆惘 惠忰 惠 惡惘悴惠.. 悋 惡惶惘 悋 悋惠 惡惠惷 惆惘 悽 悋愕 惆惠 惠 悴悋惠 悋惆惘
  • #17: The Vim editor is a modal editor. That means that the editor behaves differently, depending on which mode you are in. The two basic modes are called Normal mode and Insert mode. In Normal mode the characters you type are commands. In Insert mode the characters are inserted as text.
  • #18: git diff 惡悴惡 悋惘 惡 悋愕惠悴 悋惘悋 悋惘 惆惘惠惘.. 悋悋 惷悋 悋悋惠 悋 悋惠惺惆惠 惺 悋愕惠悴 悋惘悋 .. 悋 悖 悋悽惠悋悋惠
  • #19: 悋 惡惺 add 悋悋 惡惷 悋悋惠 惺 悋愕惠悴 悋惘悋 惡惺惆悋 惡惘忰 惡惺 惠 惡惠惠 悋愕惠悴 惘惡慍惠惘.. 惠悽 惺 惠 惺悋 惺惆悸 惠惺惆悋惠 惡惆 惠惷 惠惺惆 惠 忰惆.. 惡惠惺 悋惆 悋惠 悋 悋悋 惺悋悸 惡惺惆 惠 惓 愕 悋惘悸 惠惺惆 悋惠悋..