SlideShare une entreprise Scribd logo
1  sur  116
git
the fast version control system
pull     pull



       push                   push




pull                                 pull




       pull            pull

                push
getting and creating
      projects
config
configuring your git environment
$ git config --global user.name “Your Name”
$ git config --global user.email “name@domain.com”
$   git   config   --global   alias.st status
$   git   config   --global   alias.ci commit
$   git   config   --global   alias.co checkout
$   git   config   --global   alias.br branch
$ git config --global color.ui auto
$ git config --global apply.whitespace nowarn
$ git config --global core.editor “mate -w”
~/.gitconfig
init
initializes a directory as a git repository
.
|--   COMMIT_EDITMSG
|--   FETCH_HEAD
|--   HEAD
|--   ORIG_HEAD
|--   branches
|--   config
|--   description
|--   hooks
|     |-- applypatch-msg
|     |-- commit-msg
|     |-- post-commit
|     |-- post-receive
|     |-- post-update
|     |-- pre-applypatch
|     |-- pre-commit
|     |-- pre-rebase
|     |-- prepare-commit-msg
|     `-- update
|--   index
|--   info
|     `-- exclude
|--   logs
|     |-- HEAD
|     `-- refs
|--   objects
`--   refs
      |-- heads
      |-- remotes
      |-- stash
      `-- tags
clone
copy a git repository
basic snapshotting
add
adds file contents to the staging area
status
view the status of your files in the working directory and staging area
diff
shows diff of what is staged and what is modified but unstaged
commit
records a snapshot of the staging area
$ git commit -m ‘Fix commit msg’ --amend
reset
$ git reset --hard
$ git clean -df
clean.requireForce defaults to true
rm
remove files from the staging area
mv
rename files in the staging area
stash
saving temporarily local changes
branching and merging
branch
list, create and manage working contexts
alias “ co “
checkout
$   git   checkout   <branch>
$   git   checkout   <tag>
$   git   checkout   <commit>
$   git   checkout   <file>
merge
merge a branch context into your current branch
log
show commit history of a branch
tag
tag a point in history as important
sharing and updating
      projects
remote
list, add and delete remote repository aliases
fetch, pull
Download objects and refs from another repository




         $ git fetch <repo>

         $ git fetch --all
$ git pull <repo> <branch>
push
$ git push <repo> <branch>
$ git push <repo> :<branch>
patch
$ git format-patch master --stdout > fix_bug.patch
$ git diff HEAD~1 > fix_bug.patch

$ git apply fix_bug.patch
rebase
merge vs rebase
merge   rebase
reordering commits
$ git rebase -i HEAD~3
$ git pull --rebase
$ git config branch.master.rebase true
$ git config branch.branch3.rebase true
$ git config branch.autosetuprebase always

$ git pull --no-rebase
$ git rebase --continue
$ git rebase --abort
inspection and
  comparison
log
$ git rev-list
diff
git
              the fast version control system
•   http://git-scm.com/
•   http://gitready.com/
•   http://gitref.org/
•   http://github.com/
•   http://bitbucket.org/
•   http://progit.org/
•   http://stackoverflow.com/
•   http://www.arthurkoziel.com/2008/05/02/git-configuration/
•   http://www.iconfinder.com/

Contenu connexe

Tendances

G*なクラウド ~雲のかなたに~
G*なクラウド ~雲のかなたに~G*なクラウド ~雲のかなたに~
G*なクラウド ~雲のかなたに~Tsuyoshi Yamamoto
 
WordPress 運用を支える Perl
WordPress 運用を支える PerlWordPress 運用を支える Perl
WordPress 運用を支える Perl鉄次 尾形
 
LINE iOS開発で実践しているGit tips
LINE iOS開発で実践しているGit tipsLINE iOS開発で実践しているGit tips
LINE iOS開発で実践しているGit tipsLINE Corporation
 
gunicorn introduction
gunicorn introductiongunicorn introduction
gunicorn introductionAdam Lowry
 
GIT rozproszony system kontroli wersji
GIT rozproszony system kontroli wersjiGIT rozproszony system kontroli wersji
GIT rozproszony system kontroli wersji3camp
 
R版Getopt::Longを作ってみた
R版Getopt::Longを作ってみたR版Getopt::Longを作ってみた
R版Getopt::Longを作ってみたTakeshi Arabiki
 
名古屋SGGAE/J勉強会 Grails、Gaelykでハンズオン
名古屋SGGAE/J勉強会 Grails、Gaelykでハンズオン名古屋SGGAE/J勉強会 Grails、Gaelykでハンズオン
名古屋SGGAE/J勉強会 Grails、GaelykでハンズオンTsuyoshi Yamamoto
 
JIP Pipeline System Introduction
JIP Pipeline System IntroductionJIP Pipeline System Introduction
JIP Pipeline System Introductionthasso23
 
2005_Structures and functions of Makefile
2005_Structures and functions of Makefile2005_Structures and functions of Makefile
2005_Structures and functions of MakefileNakCheon Jung
 
Apache Hadoop for System Administrators
Apache Hadoop for System AdministratorsApache Hadoop for System Administrators
Apache Hadoop for System AdministratorsAllen Wittenauer
 
KubeCon EU 2016: Custom Volume Plugins
KubeCon EU 2016: Custom Volume PluginsKubeCon EU 2016: Custom Volume Plugins
KubeCon EU 2016: Custom Volume PluginsKubeAcademy
 
わかった気になるgitit-0.8
わかった気になるgitit-0.8わかった気になるgitit-0.8
わかった気になるgitit-0.8Kiwamu Okabe
 

Tendances (19)

6. Add numbers in Laravel
6. Add numbers in Laravel6. Add numbers in Laravel
6. Add numbers in Laravel
 
Gaelyk
GaelykGaelyk
Gaelyk
 
Virthualenvwrapper
VirthualenvwrapperVirthualenvwrapper
Virthualenvwrapper
 
G*なクラウド ~雲のかなたに~
G*なクラウド ~雲のかなたに~G*なクラウド ~雲のかなたに~
G*なクラウド ~雲のかなたに~
 
WordPress 運用を支える Perl
WordPress 運用を支える PerlWordPress 運用を支える Perl
WordPress 運用を支える Perl
 
G* on GAE/J 挑戦編
G* on GAE/J 挑戦編G* on GAE/J 挑戦編
G* on GAE/J 挑戦編
 
fabfile.py
fabfile.pyfabfile.py
fabfile.py
 
LINE iOS開発で実践しているGit tips
LINE iOS開発で実践しているGit tipsLINE iOS開発で実践しているGit tips
LINE iOS開発で実践しているGit tips
 
8. Move in Laravel
8. Move in Laravel8. Move in Laravel
8. Move in Laravel
 
gunicorn introduction
gunicorn introductiongunicorn introduction
gunicorn introduction
 
GIT rozproszony system kontroli wersji
GIT rozproszony system kontroli wersjiGIT rozproszony system kontroli wersji
GIT rozproszony system kontroli wersji
 
Git internals
Git internalsGit internals
Git internals
 
R版Getopt::Longを作ってみた
R版Getopt::Longを作ってみたR版Getopt::Longを作ってみた
R版Getopt::Longを作ってみた
 
名古屋SGGAE/J勉強会 Grails、Gaelykでハンズオン
名古屋SGGAE/J勉強会 Grails、Gaelykでハンズオン名古屋SGGAE/J勉強会 Grails、Gaelykでハンズオン
名古屋SGGAE/J勉強会 Grails、Gaelykでハンズオン
 
JIP Pipeline System Introduction
JIP Pipeline System IntroductionJIP Pipeline System Introduction
JIP Pipeline System Introduction
 
2005_Structures and functions of Makefile
2005_Structures and functions of Makefile2005_Structures and functions of Makefile
2005_Structures and functions of Makefile
 
Apache Hadoop for System Administrators
Apache Hadoop for System AdministratorsApache Hadoop for System Administrators
Apache Hadoop for System Administrators
 
KubeCon EU 2016: Custom Volume Plugins
KubeCon EU 2016: Custom Volume PluginsKubeCon EU 2016: Custom Volume Plugins
KubeCon EU 2016: Custom Volume Plugins
 
わかった気になるgitit-0.8
わかった気になるgitit-0.8わかった気になるgitit-0.8
わかった気になるgitit-0.8
 

En vedette

Vistage Group Overview Brochure
Vistage Group Overview BrochureVistage Group Overview Brochure
Vistage Group Overview BrochureJamie Overbey
 
Jan Newsletter
Jan NewsletterJan Newsletter
Jan Newslettermjcunny
 
Revista Catalunya - Papers 119 Juliol 2010
Revista Catalunya - Papers 119 Juliol 2010Revista Catalunya - Papers 119 Juliol 2010
Revista Catalunya - Papers 119 Juliol 2010Revista Catalunya
 
CSR Forays in Southern Africa
CSR Forays in Southern AfricaCSR Forays in Southern Africa
CSR Forays in Southern AfricaNdangwa Noyoo
 
Ponsetti,bermudez,nellen,gaido
Ponsetti,bermudez,nellen,gaidoPonsetti,bermudez,nellen,gaido
Ponsetti,bermudez,nellen,gaidoaledalmasso
 
東京ソーシャルデザイン研究所Ver4ドラフト
東京ソーシャルデザイン研究所Ver4ドラフト東京ソーシャルデザイン研究所Ver4ドラフト
東京ソーシャルデザイン研究所Ver4ドラフトTakayuki Toda
 
MyNotifications for New Function APAR Subscription
MyNotifications for New Function APAR SubscriptionMyNotifications for New Function APAR Subscription
MyNotifications for New Function APAR SubscriptionMarna Walle
 
March Newsletter
March NewsletterMarch Newsletter
March Newslettermjcunny
 
【schoo WEB-campus】「頭を使う」ってどういうことだろう? 先生:細谷 功
【schoo WEB-campus】「頭を使う」ってどういうことだろう? 先生:細谷 功【schoo WEB-campus】「頭を使う」ってどういうことだろう? 先生:細谷 功
【schoo WEB-campus】「頭を使う」ってどういうことだろう? 先生:細谷 功schoowebcampus
 
E commerce developments and use of social media
E commerce developments and use of social mediaE commerce developments and use of social media
E commerce developments and use of social mediaRob Blamires
 
தமிழ் மொழிக் கற்பித்தலில் தொடர்புத்துறையும் கணினியும்
தமிழ் மொழிக் கற்பித்தலில் தொடர்புத்துறையும் கணினியும்தமிழ் மொழிக் கற்பித்தலில் தொடர்புத்துறையும் கணினியும்
தமிழ் மொழிக் கற்பித்தலில் தொடர்புத்துறையும் கணினியும்ஜெய்லக்ஷ்மி இராமமூர்த்தி
 
2015 Toyota Avalon | Wilkes-Barre Area Toyota Dealer
2015 Toyota Avalon | Wilkes-Barre Area Toyota Dealer2015 Toyota Avalon | Wilkes-Barre Area Toyota Dealer
2015 Toyota Avalon | Wilkes-Barre Area Toyota Dealerscranton toyota
 
The future of community based services and education
The future of community based services and educationThe future of community based services and education
The future of community based services and educationTraci Jones
 
день семьи
день семьидень семьи
день семьиSokol194
 
Prezentare Your Promo Innovaty
Prezentare Your Promo InnovatyPrezentare Your Promo Innovaty
Prezentare Your Promo InnovatyAndreea Vladau
 

En vedette (19)

Vistage Group Overview Brochure
Vistage Group Overview BrochureVistage Group Overview Brochure
Vistage Group Overview Brochure
 
Jan Newsletter
Jan NewsletterJan Newsletter
Jan Newsletter
 
Revista Catalunya - Papers 119 Juliol 2010
Revista Catalunya - Papers 119 Juliol 2010Revista Catalunya - Papers 119 Juliol 2010
Revista Catalunya - Papers 119 Juliol 2010
 
CSR Forays in Southern Africa
CSR Forays in Southern AfricaCSR Forays in Southern Africa
CSR Forays in Southern Africa
 
Ponsetti,bermudez,nellen,gaido
Ponsetti,bermudez,nellen,gaidoPonsetti,bermudez,nellen,gaido
Ponsetti,bermudez,nellen,gaido
 
東京ソーシャルデザイン研究所Ver4ドラフト
東京ソーシャルデザイン研究所Ver4ドラフト東京ソーシャルデザイン研究所Ver4ドラフト
東京ソーシャルデザイン研究所Ver4ドラフト
 
MyNotifications for New Function APAR Subscription
MyNotifications for New Function APAR SubscriptionMyNotifications for New Function APAR Subscription
MyNotifications for New Function APAR Subscription
 
March Newsletter
March NewsletterMarch Newsletter
March Newsletter
 
【schoo WEB-campus】「頭を使う」ってどういうことだろう? 先生:細谷 功
【schoo WEB-campus】「頭を使う」ってどういうことだろう? 先生:細谷 功【schoo WEB-campus】「頭を使う」ってどういうことだろう? 先生:細谷 功
【schoo WEB-campus】「頭を使う」ってどういうことだろう? 先生:細谷 功
 
Christianity
ChristianityChristianity
Christianity
 
E commerce developments and use of social media
E commerce developments and use of social mediaE commerce developments and use of social media
E commerce developments and use of social media
 
தமிழ் மொழிக் கற்பித்தலில் தொடர்புத்துறையும் கணினியும்
தமிழ் மொழிக் கற்பித்தலில் தொடர்புத்துறையும் கணினியும்தமிழ் மொழிக் கற்பித்தலில் தொடர்புத்துறையும் கணினியும்
தமிழ் மொழிக் கற்பித்தலில் தொடர்புத்துறையும் கணினியும்
 
2015 Toyota Avalon | Wilkes-Barre Area Toyota Dealer
2015 Toyota Avalon | Wilkes-Barre Area Toyota Dealer2015 Toyota Avalon | Wilkes-Barre Area Toyota Dealer
2015 Toyota Avalon | Wilkes-Barre Area Toyota Dealer
 
The future of community based services and education
The future of community based services and educationThe future of community based services and education
The future of community based services and education
 
Resume
ResumeResume
Resume
 
день семьи
день семьидень семьи
день семьи
 
Aiff
AiffAiff
Aiff
 
majalah detik_96
 majalah detik_96 majalah detik_96
majalah detik_96
 
Prezentare Your Promo Innovaty
Prezentare Your Promo InnovatyPrezentare Your Promo Innovaty
Prezentare Your Promo Innovaty
 

Similaire à Git (20)

Git and github 101
Git and github 101Git and github 101
Git and github 101
 
Git Distributed Version Control System
Git   Distributed Version Control SystemGit   Distributed Version Control System
Git Distributed Version Control System
 
GTFO: Git Theory For OpenSource
GTFO: Git Theory For OpenSourceGTFO: Git Theory For OpenSource
GTFO: Git Theory For OpenSource
 
Git walkthrough
Git walkthroughGit walkthrough
Git walkthrough
 
Git
GitGit
Git
 
Git tricks
Git tricksGit tricks
Git tricks
 
Git Tricks
Git TricksGit Tricks
Git Tricks
 
Get Good With Git
Get Good With GitGet Good With Git
Get Good With Git
 
Introduction to GIT
Introduction to GITIntroduction to GIT
Introduction to GIT
 
Git Tech Talk
Git  Tech TalkGit  Tech Talk
Git Tech Talk
 
GIT_In_90_Minutes
GIT_In_90_MinutesGIT_In_90_Minutes
GIT_In_90_Minutes
 
Version control
Version controlVersion control
Version control
 
Git
GitGit
Git
 
Learning Basic GIT Cmd
Learning Basic GIT CmdLearning Basic GIT Cmd
Learning Basic GIT Cmd
 
Git
GitGit
Git
 
Git - Get Ready To Use It
Git - Get Ready To Use ItGit - Get Ready To Use It
Git - Get Ready To Use It
 
Git
GitGit
Git
 
Git Aliases of the Gods!
Git Aliases of the Gods!Git Aliases of the Gods!
Git Aliases of the Gods!
 
Exprimiendo GIT
Exprimiendo GITExprimiendo GIT
Exprimiendo GIT
 
Did you git yet?
Did you git yet?Did you git yet?
Did you git yet?
 

Dernier

CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure servicePooja Nehwal
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024Results
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsEnterprise Knowledge
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slidevu2urc
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘RTylerCroy
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationRadu Cotescu
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhisoniya singh
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Alan Dix
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesSinan KOZAK
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitecturePixlogix Infotech
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationMichael W. Hawkins
 

Dernier (20)

CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure serviceWhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
WhatsApp 9892124323 ✓Call Girls In Kalyan ( Mumbai ) secure service
 
A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024A Call to Action for Generative AI in 2024
A Call to Action for Generative AI in 2024
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
IAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI SolutionsIAC 2024 - IA Fast Track to Search Focused AI Solutions
IAC 2024 - IA Fast Track to Search Focused AI Solutions
 
Histor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slideHistor y of HAM Radio presentation slide
Histor y of HAM Radio presentation slide
 
🐬 The future of MySQL is Postgres 🐘
🐬  The future of MySQL is Postgres   🐘🐬  The future of MySQL is Postgres   🐘
🐬 The future of MySQL is Postgres 🐘
 
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
#StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Scaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organizationScaling API-first – The story of a global engineering organization
Scaling API-first – The story of a global engineering organization
 
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | DelhiFULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
FULL ENJOY 🔝 8264348440 🔝 Call Girls in Diplomatic Enclave | Delhi
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...Swan(sea) Song – personal research during my six years at Swansea ... and bey...
Swan(sea) Song – personal research during my six years at Swansea ... and bey...
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Unblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen FramesUnblocking The Main Thread Solving ANRs and Frozen Frames
Unblocking The Main Thread Solving ANRs and Frozen Frames
 
Understanding the Laravel MVC Architecture
Understanding the Laravel MVC ArchitectureUnderstanding the Laravel MVC Architecture
Understanding the Laravel MVC Architecture
 
GenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day PresentationGenCyber Cyber Security Day Presentation
GenCyber Cyber Security Day Presentation
 

Git

Notes de l'éditeur

  1. \n
  2. \n
  3. \n
  4. \n
  5. \n
  6. \n
  7. \n
  8. \n
  9. \n
  10. \n
  11. \n
  12. \n
  13. \n
  14. \n
  15. \n
  16. \n
  17. \n
  18. \n
  19. \n
  20. \n
  21. \n
  22. \n
  23. \n
  24. \n
  25. \n
  26. \n
  27. \n
  28. \n
  29. \n
  30. \n
  31. \n
  32. \n
  33. \n
  34. \n
  35. \n
  36. \n
  37. \n
  38. \n
  39. \n
  40. \n
  41. \n
  42. \n
  43. \n
  44. \n
  45. \n
  46. \n
  47. \n
  48. \n
  49. \n
  50. \n
  51. \n
  52. \n
  53. \n
  54. \n
  55. \n
  56. \n
  57. \n
  58. \n
  59. \n
  60. \n
  61. \n
  62. \n
  63. \n
  64. \n
  65. \n
  66. \n
  67. \n
  68. \n
  69. \n
  70. \n
  71. \n
  72. \n
  73. \n
  74. \n
  75. \n
  76. \n
  77. \n
  78. \n
  79. \n
  80. \n
  81. \n
  82. \n
  83. \n
  84. \n
  85. \n
  86. \n
  87. \n
  88. \n
  89. \n
  90. \n
  91. \n
  92. \n
  93. \n
  94. \n
  95. \n
  96. \n
  97. \n
  98. \n
  99. \n
  100. \n
  101. \n
  102. \n
  103. \n
  104. \n
  105. \n
  106. \n
  107. \n
  108. \n
  109. \n
  110. \n
  111. \n
  112. \n
  113. \n
  114. \n
  115. \n
  116. \n