SlideShare a Scribd company logo
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
Git
Git
Git
.
|--   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
Git
Git
basic snapshotting
add
adds file contents to the staging area
Git
Git
Git
Git
status
view the status of your files in the working directory and staging area
Git
Git
diff
shows diff of what is staged and what is modified but unstaged
Git
Git
commit
records a snapshot of the staging area
Git
Git
$ git commit -m ‘Fix commit msg’ --amend
reset
Git
$ git reset --hard
$ git clean -df
clean.requireForce defaults to true
rm
remove files from the staging area
Git
Git
mv
rename files in the staging area
Git
Git
stash
saving temporarily local changes
Git
Git
branching and merging
branch
list, create and manage working contexts
Git
Git
Git
alias “ co “
Git
checkout
$   git   checkout   <branch>
$   git   checkout   <tag>
$   git   checkout   <commit>
$   git   checkout   <file>
merge
merge a branch context into your current branch
Git
Git
Git
Git
Git
log
show commit history of a branch
Git
Git
Git
Git
Git
Git
Git
tag
tag a point in history as important
Git
Git
Git
Git
sharing and updating
      projects
remote
list, add and delete remote repository aliases
Git
Git
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
$ 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
$ 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
Git
$ git rebase --continue
$ git rebase --abort
inspection and
  comparison
log
Git
Git
Git
Git
$ git rev-list
diff
Git
Git
Git
Git
Git
Git
Git
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/
Ad

More Related Content

What's hot (19)

6. Add numbers in Laravel
6. Add numbers in Laravel6. Add numbers in Laravel
6. Add numbers in Laravel
Razvan Raducanu, PhD
 
Gaelyk
GaelykGaelyk
Gaelyk
Kazuchika Sekiya
 
Virthualenvwrapper
VirthualenvwrapperVirthualenvwrapper
Virthualenvwrapper
Kazufumi Ohkawa
 
G*なクラウド ~雲のかなたに~
G*なクラウド ~雲のかなたに~G*なクラウド ~雲のかなたに~
G*なクラウド ~雲のかなたに~
Tsuyoshi Yamamoto
 
WordPress 運用を支える Perl
WordPress 運用を支える PerlWordPress 運用を支える Perl
WordPress 運用を支える Perl
鉄次 尾形
 
G* on GAE/J 挑戦編
G* on GAE/J 挑戦編G* on GAE/J 挑戦編
G* on GAE/J 挑戦編
Tsuyoshi Yamamoto
 
fabfile.py
fabfile.pyfabfile.py
fabfile.py
Corey Oordt
 
LINE iOS開発で実践しているGit tips
LINE iOS開発で実践しているGit tipsLINE iOS開発で実践しているGit tips
LINE iOS開発で実践しているGit tips
LINE Corporation
 
8. Move in Laravel
8. Move in Laravel8. Move in Laravel
8. Move in Laravel
Razvan Raducanu, PhD
 
gunicorn introduction
gunicorn introductiongunicorn introduction
gunicorn introduction
Adam Lowry
 
GIT rozproszony system kontroli wersji
GIT rozproszony system kontroli wersjiGIT rozproszony system kontroli wersji
GIT rozproszony system kontroli wersji
3camp
 
Git internals
Git internalsGit internals
Git internals
Manu Cupcic
 
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 Introduction
thasso23
 
2005_Structures and functions of Makefile
2005_Structures and functions of Makefile2005_Structures and functions of Makefile
2005_Structures and functions of Makefile
NakCheon Jung
 
Apache Hadoop for System Administrators
Apache Hadoop for System AdministratorsApache Hadoop for System Administrators
Apache Hadoop for System Administrators
Allen Wittenauer
 
KubeCon EU 2016: Custom Volume Plugins
KubeCon EU 2016: Custom Volume PluginsKubeCon EU 2016: Custom Volume Plugins
KubeCon EU 2016: Custom Volume Plugins
KubeAcademy
 
わかった気になるgitit-0.8
わかった気になるgitit-0.8わかった気になるgitit-0.8
わかった気になるgitit-0.8
Kiwamu Okabe
 
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 tips
LINE Corporation
 
gunicorn introduction
gunicorn introductiongunicorn introduction
gunicorn introduction
Adam Lowry
 
GIT rozproszony system kontroli wersji
GIT rozproszony system kontroli wersjiGIT rozproszony system kontroli wersji
GIT rozproszony system kontroli wersji
3camp
 
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 Introduction
thasso23
 
2005_Structures and functions of Makefile
2005_Structures and functions of Makefile2005_Structures and functions of Makefile
2005_Structures and functions of Makefile
NakCheon Jung
 
Apache Hadoop for System Administrators
Apache Hadoop for System AdministratorsApache Hadoop for System Administrators
Apache Hadoop for System Administrators
Allen Wittenauer
 
KubeCon EU 2016: Custom Volume Plugins
KubeCon EU 2016: Custom Volume PluginsKubeCon EU 2016: Custom Volume Plugins
KubeCon EU 2016: Custom Volume Plugins
KubeAcademy
 
わかった気になるgitit-0.8
わかった気になるgitit-0.8わかった気になるgitit-0.8
わかった気になるgitit-0.8
Kiwamu Okabe
 

Viewers also liked (19)

Vistage Group Overview Brochure
Vistage Group Overview BrochureVistage Group Overview Brochure
Vistage Group Overview Brochure
Jamie Overbey
 
Jan Newsletter
Jan NewsletterJan Newsletter
Jan Newsletter
mjcunny
 
Revista Catalunya - Papers 119 Juliol 2010
Revista Catalunya - Papers 119 Juliol 2010Revista Catalunya - Papers 119 Juliol 2010
Revista Catalunya - Papers 119 Juliol 2010
Revista Catalunya
 
CSR Forays in Southern Africa
CSR Forays in Southern AfricaCSR Forays in Southern Africa
CSR Forays in Southern Africa
Ndangwa Noyoo
 
Ponsetti,bermudez,nellen,gaido
Ponsetti,bermudez,nellen,gaidoPonsetti,bermudez,nellen,gaido
Ponsetti,bermudez,nellen,gaido
aledalmasso
 
東京ソーシャルデザイン研究所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 Subscription
Marna Walle
 
March Newsletter
March NewsletterMarch Newsletter
March Newsletter
mjcunny
 
【schoo WEB-campus】「頭を使う」ってどういうことだろう? 先生:細谷 功
【schoo WEB-campus】「頭を使う」ってどういうことだろう? 先生:細谷 功【schoo WEB-campus】「頭を使う」ってどういうことだろう? 先生:細谷 功
【schoo WEB-campus】「頭を使う」ってどういうことだろう? 先生:細谷 功
schoowebcampus
 
Christianity
ChristianityChristianity
Christianity
Donald Southerland
 
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
Rob 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 Dealer
scranton 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 education
Traci Jones
 
Resume
ResumeResume
Resume
Roei Arminal
 
день семьи
день семьидень семьи
день семьи
Sokol194
 
Aiff
AiffAiff
Aiff
Freidercon
 
majalah detik_96
 majalah detik_96 majalah detik_96
majalah detik_96
Muhammad Noval
 
Prezentare Your Promo Innovaty
Prezentare Your Promo InnovatyPrezentare Your Promo Innovaty
Prezentare Your Promo Innovaty
Andreea Vladau
 
Vistage Group Overview Brochure
Vistage Group Overview BrochureVistage Group Overview Brochure
Vistage Group Overview Brochure
Jamie Overbey
 
Jan Newsletter
Jan NewsletterJan Newsletter
Jan Newsletter
mjcunny
 
Revista Catalunya - Papers 119 Juliol 2010
Revista Catalunya - Papers 119 Juliol 2010Revista Catalunya - Papers 119 Juliol 2010
Revista Catalunya - Papers 119 Juliol 2010
Revista Catalunya
 
CSR Forays in Southern Africa
CSR Forays in Southern AfricaCSR Forays in Southern Africa
CSR Forays in Southern Africa
Ndangwa Noyoo
 
Ponsetti,bermudez,nellen,gaido
Ponsetti,bermudez,nellen,gaidoPonsetti,bermudez,nellen,gaido
Ponsetti,bermudez,nellen,gaido
aledalmasso
 
東京ソーシャルデザイン研究所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 Subscription
Marna Walle
 
March Newsletter
March NewsletterMarch Newsletter
March Newsletter
mjcunny
 
【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 media
Rob 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 Dealer
scranton 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 education
Traci Jones
 
день семьи
день семьидень семьи
день семьи
Sokol194
 
Prezentare Your Promo Innovaty
Prezentare Your Promo InnovatyPrezentare Your Promo Innovaty
Prezentare Your Promo Innovaty
Andreea Vladau
 
Ad

Similar to Git (20)

Git and github 101
Git and github 101Git and github 101
Git and github 101
Senthilkumar Gopal
 
Git Distributed Version Control System
Git   Distributed Version Control SystemGit   Distributed Version Control System
Git Distributed Version Control System
Victor Wong
 
GTFO: Git Theory For OpenSource
GTFO: Git Theory For OpenSourceGTFO: Git Theory For OpenSource
GTFO: Git Theory For OpenSource
Forest Mars
 
Git walkthrough
Git walkthroughGit walkthrough
Git walkthrough
Mahmoud Said
 
Git
GitGit
Git
Parag Gupta
 
Git tricks
Git tricksGit tricks
Git tricks
Arthur Zapparoli
 
Git Tricks
Git TricksGit Tricks
Git Tricks
Vagner Rodrigues
 
Get Good With Git
Get Good With GitGet Good With Git
Get Good With Git
Hoffman Lab
 
Introduction to GIT
Introduction to GITIntroduction to GIT
Introduction to GIT
Arpit Mohan
 
Git Tech Talk
Git  Tech TalkGit  Tech Talk
Git Tech Talk
Chris Johnson
 
GIT_In_90_Minutes
GIT_In_90_MinutesGIT_In_90_Minutes
GIT_In_90_Minutes
vimukthirandika
 
Version control
Version controlVersion control
Version control
Rajesh Khadka
 
Git
GitGit
Git
Gayan Kalanamith Mannapperuma
 
Learning Basic GIT Cmd
Learning Basic GIT CmdLearning Basic GIT Cmd
Learning Basic GIT Cmd
srinathcox
 
Git
GitGit
Git
Maks Charuk
 
Git - Get Ready To Use It
Git - Get Ready To Use ItGit - Get Ready To Use It
Git - Get Ready To Use It
Daniel Kummer
 
Git
GitGit
Git
AddWeb Solution Pvt. Ltd.
 
Git Aliases of the Gods!
Git Aliases of the Gods!Git Aliases of the Gods!
Git Aliases of the Gods!
Atlassian
 
Exprimiendo GIT
Exprimiendo GITExprimiendo GIT
Exprimiendo GIT
betabeers
 
Did you git yet?
Did you git yet?Did you git yet?
Did you git yet?
Michael Fong
 
Ad

Recently uploaded (20)

HCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser EnvironmentsHCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser Environments
panagenda
 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
 
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptxDevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
Justin Reock
 
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-UmgebungenHCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
panagenda
 
Electronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploitElectronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploit
niftliyevhuseyn
 
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
BookNet Canada
 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
 
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Aqusag Technologies
 
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Impelsys Inc.
 
Generative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in BusinessGenerative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in Business
Dr. Tathagat Varma
 
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
 
Splunk Security Update | Public Sector Summit Germany 2025
Splunk Security Update | Public Sector Summit Germany 2025Splunk Security Update | Public Sector Summit Germany 2025
Splunk Security Update | Public Sector Summit Germany 2025
Splunk
 
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager APIUiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPathCommunity
 
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
SOFTTECHHUB
 
Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)
Ortus Solutions, Corp
 
Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.
hpbmnnxrvb
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
Build Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For DevsBuild Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For Devs
Brian McKeiver
 
HCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser EnvironmentsHCL Nomad Web – Best Practices and Managing Multiuser Environments
HCL Nomad Web – Best Practices and Managing Multiuser Environments
panagenda
 
How analogue intelligence complements AI
How analogue intelligence complements AIHow analogue intelligence complements AI
How analogue intelligence complements AI
Paul Rowe
 
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptxDevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
DevOpsDays Atlanta 2025 - Building 10x Development Organizations.pptx
Justin Reock
 
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-UmgebungenHCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
HCL Nomad Web – Best Practices und Verwaltung von Multiuser-Umgebungen
panagenda
 
Electronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploitElectronic_Mail_Attacks-1-35.pdf by xploit
Electronic_Mail_Attacks-1-35.pdf by xploit
niftliyevhuseyn
 
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
Transcript: #StandardsGoals for 2025: Standards & certification roundup - Tec...
BookNet Canada
 
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath MaestroDev Dives: Automate and orchestrate your processes with UiPath Maestro
Dev Dives: Automate and orchestrate your processes with UiPath Maestro
UiPathCommunity
 
tecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdftecnologias de las primeras civilizaciones.pdf
tecnologias de las primeras civilizaciones.pdf
fjgm517
 
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Massive Power Outage Hits Spain, Portugal, and France: Causes, Impact, and On...
Aqusag Technologies
 
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Enhancing ICU Intelligence: How Our Functional Testing Enabled a Healthcare I...
Impelsys Inc.
 
Generative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in BusinessGenerative Artificial Intelligence (GenAI) in Business
Generative Artificial Intelligence (GenAI) in Business
Dr. Tathagat Varma
 
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes Partner Innovation Updates for May 2025
ThousandEyes
 
Procurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptxProcurement Insights Cost To Value Guide.pptx
Procurement Insights Cost To Value Guide.pptx
Jon Hansen
 
Splunk Security Update | Public Sector Summit Germany 2025
Splunk Security Update | Public Sector Summit Germany 2025Splunk Security Update | Public Sector Summit Germany 2025
Splunk Security Update | Public Sector Summit Germany 2025
Splunk
 
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager APIUiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPath Community Berlin: Orchestrator API, Swagger, and Test Manager API
UiPathCommunity
 
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
AI EngineHost Review: Revolutionary USA Datacenter-Based Hosting with NVIDIA ...
SOFTTECHHUB
 
Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)Into The Box Conference Keynote Day 1 (ITB2025)
Into The Box Conference Keynote Day 1 (ITB2025)
Ortus Solutions, Corp
 
Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.Greenhouse_Monitoring_Presentation.pptx.
Greenhouse_Monitoring_Presentation.pptx.
hpbmnnxrvb
 
Mobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi ArabiaMobile App Development Company in Saudi Arabia
Mobile App Development Company in Saudi Arabia
Steve Jonas
 
Build Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For DevsBuild Your Own Copilot & Agents For Devs
Build Your Own Copilot & Agents For Devs
Brian McKeiver
 

Git

Editor's Notes