Introduction to Git for Artists

David Newbury
David NewburyHead of Software at Getty
Today's Goals
1.Install Git.
2.Get a Github Account
3.Download a Repo
4.Fork a Repo
5.Create a Branch
6.Create a Pull Request
7.Create your own repo
Today's SecondaryGoals
1.Know what Git is.
2.Know why you should care.
Whatis Git?
Abetterwayto download open
source software.
git clone https://github.com/jquery/jquery.git
No,What is Git?
Introduction to Git for Artists
What is version control?
What is version control?
UNDO
Versioned Files
LocalVersion Control
CentralizedVersion Control
DistributedVersion Control
So,Whatis Git?
Gitisawayto
manage
and
collaborate
on large projects.
Whatis Github?
Aplace for code.
Aplace for PUBLIC code.
APLACE FOR FORKS.
Use someone else's
project
asa
starting
pointforyour own idea.
PullRequests
Github flow:
Fork it. Clone it.
Branch it. Change it.
Add it. Commit it.
Push it. Pull Request it.
Three Trees:
1.working directory
» This is the current directory.
2.staging/index
» this is everything added, but not committed
3.HEAD
» this is your last commit.
Three repos:
1.local
» This is on your computer
2.origin
» this is yours on github
3.upstream
» this is the original, on github
GetGit
Command Line:
http://git-scm.com/downloads
GUI:
https://windows.github.com
or
https://mac.github.com
(make it so)
Your FirstDefense
git help <anything>
Addyour user info
git config --global user.name "John Doe"
git config --global user.email johndoe@example.com
# make it pretty
git config --global color.ui true
Addyour editor
git config --global core.editor subl
# or
git config --global core.editor mate
# or
git config --global core.editor nano
# if you're crazy
git config --global core.editor vim
# if you're crazier
git config --global core.editor emacs
Create ssh-keys
Follow these instructions:
https://help.github.com/articles/generating-ssh-keys/
TL;DR.
ssh-keygen -t rsa -C "your_email@example.com"
pbcopy < ~/.ssh/id_rsa.pub
# Upload to github
ssh -T git@github.com
Commands
git init
Createanewrepository
git init pandatracker
cd pandatracker
# or, if you already have a directory:
git init .
git status
What's going on?
git status
git status
What's going on?
On branch master
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: git.txt
no changes added to commit (use "git add" and/or "git commit -a")
git clone
Downloadaremote repository
git clone https://github.com/tadejm/sing-along.git
git clone
Downloadaremote repository
Cloning into 'sing-along'...
remote: Counting objects: 89, done.
remote: Total 89 (delta 0), reused 0 (delta 0)
Unpacking objects: 100% (89/89), done.
Checking connectivity... done.
git add <filename>
Addafileto staging
# add a single file
git add petunia.rb
# add the current directory
git add .
git commit -m "message"
Commityour changesto HEAD
git commit -m "Added the interface to the petunia neurons"
git commit -m "message"
Commityour changesto HEAD
[master 668ce5f] Added the interface to the petunia neurons
1 file changed, 1 insertion(+)
git commit
Open your favorite text editor.
Meaningful
Commit
Messages
wip
Meaningful
Commit
Messages
wip
bugfixes
Meaningful
Commit
Messages
wip
bugfixes
changed some stuff
Meaningful
Commit
Messages
wip
bugfixes
changed some stuff
why on earth am I working at three am????
Meaningful
Commit
Messages
Added the interface to the petunia neurons
We were having issues with interfacing telepathically
with the flowers growing in the garden, so we've
added a system that allows us to amplify their nural
messages using a combination of jQuery and Miracle
Grow.
git push origin master
Uploadyour code
git push origin master
git push origin master
Uploadyour code
fatal: 'origin' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
git push origin master
Uploadyour code
# if you don't have a remote
git remote add origin <server>
# then
git push origin master
git checkout -b <name>
Createabranch
# create a branch
git checkout -b lasereyes
# go back to master
git checkout master
# push to a remote
git push origin lasereyes
# Delete the branch
git branch -d lasereyes
git pull
getchanges fromaremote
git pull
MERGE CONFLICTS
Merge Conflicts
# Find out what's up
git status
# If you want your version of a file
git checkout --ours petunia.rb
# If you want their version of a file
git checkout -theirs rose.rb
# If you fixed it manually
git add daffoldil.rb
Power Tools
git log
Seethe historyofwhatyou've done
git log
commit 668ce5fb3739e13beb61d01077421f32499e86f6
Author: David Newbury <david.newbury@gmail.com>
Date: Thu Jan 15 07:04:30 2015 -0500
Added the interface to the petunia neurons
commit 8397296d7867ffd05d836a8c11a203dd15cc4652
Author: David Newbury <david.newbury@gmail.com>
Date: Thu Jan 15 06:12:30 2015 -0500
I really really made a thing
git stash
Pullingwhenyou have uncommitted changes
git stash
git pull upstream develop
git stash pop
git commit --amend
You forgotsomething.
git commit -m "Fixed the wumpus"
# (discover the wumpus is still broken)
# ...
# (actually fix the wumpus)
git commit --amend
git checkout -- <filename>
Undoyour currentwork
git checkout -- oops.rb
# oops.rb is now reverted at the last commit
git reset --hard
# All changes since your last commit are **GONE**.
git fetch origin
git reset --hard origin/master
# Everything is reverted to the master repo
.gitignore
Keepfiles outofthe repo
_site
*~
*.pyc
.DS_Store
/tmp
Note:This isafile, notacommand.
git diff
Seethe changes
diff --git a/petunia.rb b/petunia.rb
index 8895793..e6021aa 100644
--- a/petunia.rb
+++ b/petunia.rb
@@ -1,4 +1,4 @@
# Do it.
invigorate.the.petunias(100)
-run.from(petunias)
+run.from(petunias).faster!
ProjectTime
https://github.com/workergnome/lies
1.Fork it.
2.Pull it locally
3.Create a branch.
4.Add a new file (yourlastname.txt)
5.Add and commit your changes
6.Push your branch to github
7.Submit a pull request.
HelpfulLinks
http://rogerdudler.github.io/git-guide/
http://rogerdudler.github.io/git-guide/files/git_cheat_sheet.pdf
...stack overflow.
1 of 61

Recommended

Git+github by
Git+githubGit+github
Git+githubGuilherme Lima Pereira
594 views86 slides
Git basic by
Git basicGit basic
Git basicEmran Ul Hadi
10.3K views18 slides
Git One Day Training Notes by
Git One Day Training NotesGit One Day Training Notes
Git One Day Training Notesglen_a_smith
3.5K views67 slides
The everyday developer's guide to version control with Git by
The everyday developer's guide to version control with GitThe everyday developer's guide to version control with Git
The everyday developer's guide to version control with GitE Carter
20.4K views43 slides
Intro to Git and GitHub by
Intro to Git and GitHubIntro to Git and GitHub
Intro to Git and GitHubPanagiotis Papadopoulos
2.7K views31 slides
Git training v10 by
Git training v10Git training v10
Git training v10Skander Hamza
932 views64 slides

More Related Content

What's hot

Git Started With Git by
Git Started With GitGit Started With Git
Git Started With GitNick Quaranto
8.1K views54 slides
Git basics to advance with diagrams by
Git basics to advance with diagramsGit basics to advance with diagrams
Git basics to advance with diagramsDilum Navanjana
809 views55 slides
Git Pull Requests by
Git Pull RequestsGit Pull Requests
Git Pull RequestsCallon Campbell
998 views29 slides
Introduction to Git by
Introduction to GitIntroduction to Git
Introduction to GitLukas Fittl
6.5K views41 slides
Intro to git and git hub by
Intro to git and git hubIntro to git and git hub
Intro to git and git hubVenkat Malladi
1.3K views61 slides
Git Version Control System by
Git Version Control SystemGit Version Control System
Git Version Control SystemKMS Technology
7.3K views33 slides

What's hot(20)

Git basics to advance with diagrams by Dilum Navanjana
Git basics to advance with diagramsGit basics to advance with diagrams
Git basics to advance with diagrams
Dilum Navanjana809 views
Introduction to Git by Lukas Fittl
Introduction to GitIntroduction to Git
Introduction to Git
Lukas Fittl6.5K views
Git Version Control System by KMS Technology
Git Version Control SystemGit Version Control System
Git Version Control System
KMS Technology7.3K views
Git and GitHub for Documentation by Anne Gentle
Git and GitHub for DocumentationGit and GitHub for Documentation
Git and GitHub for Documentation
Anne Gentle57.5K views
Learning git by Sid Anand
Learning gitLearning git
Learning git
Sid Anand2.4K views
Git Series. Episode 3. Git Flow and Github-Flow by Mikhail Melnik
Git Series. Episode 3. Git Flow and Github-FlowGit Series. Episode 3. Git Flow and Github-Flow
Git Series. Episode 3. Git Flow and Github-Flow
Mikhail Melnik3.5K views
Version Control History and Git Basics by Sreedath N S
Version Control History and Git BasicsVersion Control History and Git Basics
Version Control History and Git Basics
Sreedath N S939 views
Git real slides by Lucas Couto
Git real slidesGit real slides
Git real slides
Lucas Couto3.5K views
Basic Git Intro by Yoad Snapir
Basic Git IntroBasic Git Intro
Basic Git Intro
Yoad Snapir6.3K views
Getting Git Right by Sven Peters
Getting Git RightGetting Git Right
Getting Git Right
Sven Peters152.2K views

Viewers also liked

Version control system & how to use git by
Version control system & how to use git Version control system & how to use git
Version control system & how to use git Ahmed Dalatony
804 views15 slides
Effective version control by
Effective version controlEffective version control
Effective version controldevObjective
512 views15 slides
Distributed Version Control Systems by
Distributed Version Control SystemsDistributed Version Control Systems
Distributed Version Control SystemsMihail Stoynov
1.3K views30 slides
Brooke McMillian- How To Build A Great Online Community by
Brooke McMillian- How To Build A Great Online CommunityBrooke McMillian- How To Build A Great Online Community
Brooke McMillian- How To Build A Great Online CommunityChris Schultz
303 views40 slides
21st Century Provenance: Lessons Learned Building Art Tracks by
21st Century Provenance:  Lessons Learned Building Art Tracks21st Century Provenance:  Lessons Learned Building Art Tracks
21st Century Provenance: Lessons Learned Building Art TracksDavid Newbury
894 views66 slides
Snapchat Company Presentation by
Snapchat Company PresentationSnapchat Company Presentation
Snapchat Company PresentationJonathan Brelje
3.7K views17 slides

Viewers also liked(8)

Version control system & how to use git by Ahmed Dalatony
Version control system & how to use git Version control system & how to use git
Version control system & how to use git
Ahmed Dalatony804 views
Effective version control by devObjective
Effective version controlEffective version control
Effective version control
devObjective512 views
Distributed Version Control Systems by Mihail Stoynov
Distributed Version Control SystemsDistributed Version Control Systems
Distributed Version Control Systems
Mihail Stoynov1.3K views
Brooke McMillian- How To Build A Great Online Community by Chris Schultz
Brooke McMillian- How To Build A Great Online CommunityBrooke McMillian- How To Build A Great Online Community
Brooke McMillian- How To Build A Great Online Community
Chris Schultz303 views
21st Century Provenance: Lessons Learned Building Art Tracks by David Newbury
21st Century Provenance:  Lessons Learned Building Art Tracks21st Century Provenance:  Lessons Learned Building Art Tracks
21st Century Provenance: Lessons Learned Building Art Tracks
David Newbury894 views
Snapchat Company Presentation by Jonathan Brelje
Snapchat Company PresentationSnapchat Company Presentation
Snapchat Company Presentation
Jonathan Brelje3.7K views
Telling Stories with Data: Class Notes 2 by David Newbury
Telling Stories with Data:  Class Notes 2Telling Stories with Data:  Class Notes 2
Telling Stories with Data: Class Notes 2
David Newbury541 views
Social Media Strategy Presentation at Dubbo IGNITE by Marketing Success
Social Media Strategy Presentation at Dubbo IGNITESocial Media Strategy Presentation at Dubbo IGNITE
Social Media Strategy Presentation at Dubbo IGNITE
Marketing Success168 views

Similar to Introduction to Git for Artists

Git github by
Git githubGit github
Git githubAnurag Deb
257 views11 slides
Working with Git by
Working with GitWorking with Git
Working with GitPete Nicholls
336 views77 slides
Git Distributed Version Control System by
Git   Distributed Version Control SystemGit   Distributed Version Control System
Git Distributed Version Control SystemVictor Wong
825 views51 slides
Gittalk by
GittalkGittalk
Gittalkprtinsley
787 views76 slides
Introduction to Git by
Introduction to GitIntroduction to Git
Introduction to GitRick Umali
933 views48 slides
Wokshop de Git by
Wokshop de Git Wokshop de Git
Wokshop de Git Alberto Leal
401 views48 slides

Similar to Introduction to Git for Artists(20)

Git Distributed Version Control System by Victor Wong
Git   Distributed Version Control SystemGit   Distributed Version Control System
Git Distributed Version Control System
Victor Wong825 views
Introduction to Git by Rick Umali
Introduction to GitIntroduction to Git
Introduction to Git
Rick Umali933 views
Introduction To Git Workshop by themystic_ca
Introduction To Git WorkshopIntroduction To Git Workshop
Introduction To Git Workshop
themystic_ca2.3K views
Matt Gauger - Git & Github web414 December 2010 by Matt Gauger
Matt Gauger - Git & Github web414 December 2010Matt Gauger - Git & Github web414 December 2010
Matt Gauger - Git & Github web414 December 2010
Matt Gauger1.7K views
GIT in a nutshell by alignan
GIT in a nutshellGIT in a nutshell
GIT in a nutshell
alignan309 views
Hacktoberfest intro to Git and GitHub by DSC GVP
Hacktoberfest intro to Git and GitHubHacktoberfest intro to Git and GitHub
Hacktoberfest intro to Git and GitHub
DSC GVP149 views
Git basic and workflow by buikhanhbk
Git basic and workflowGit basic and workflow
Git basic and workflow
buikhanhbk129 views
Introducción a git y GitHub by Lucas Videla
Introducción a git y GitHubIntroducción a git y GitHub
Introducción a git y GitHub
Lucas Videla1.2K views
Improving your workflow with git by Dídac Ríos
Improving your workflow with gitImproving your workflow with git
Improving your workflow with git
Dídac Ríos251 views
Git 101 Workshop by Joy Seng
Git 101 WorkshopGit 101 Workshop
Git 101 Workshop
Joy Seng133 views

More from David Newbury

The LOD Gateway: Open Source Infrastructure for Linked Data by
The LOD Gateway: Open Source Infrastructure for Linked DataThe LOD Gateway: Open Source Infrastructure for Linked Data
The LOD Gateway: Open Source Infrastructure for Linked DataDavid Newbury
10 views42 slides
Linked Data on a Budget by
Linked Data on a BudgetLinked Data on a Budget
Linked Data on a BudgetDavid Newbury
20 views89 slides
USE ME: progressive integration of IIIF with new software services at the Getty by
USE ME: progressive integration of IIIF with new software services at the GettyUSE ME: progressive integration of IIIF with new software services at the Getty
USE ME: progressive integration of IIIF with new software services at the GettyDavid Newbury
96 views22 slides
IIIF Across Platforms | IIIF Community Call, January 2021 by
IIIF Across Platforms | IIIF Community Call, January 2021IIIF Across Platforms | IIIF Community Call, January 2021
IIIF Across Platforms | IIIF Community Call, January 2021David Newbury
190 views49 slides
IIIF Canvases as First Class Citizens by
IIIF Canvases as First Class CitizensIIIF Canvases as First Class Citizens
IIIF Canvases as First Class CitizensDavid Newbury
127 views34 slides
IIIF and Linked Open Data: LODLAM 2020 by
IIIF and Linked Open Data: LODLAM 2020IIIF and Linked Open Data: LODLAM 2020
IIIF and Linked Open Data: LODLAM 2020David Newbury
193 views88 slides

More from David Newbury(20)

The LOD Gateway: Open Source Infrastructure for Linked Data by David Newbury
The LOD Gateway: Open Source Infrastructure for Linked DataThe LOD Gateway: Open Source Infrastructure for Linked Data
The LOD Gateway: Open Source Infrastructure for Linked Data
David Newbury10 views
USE ME: progressive integration of IIIF with new software services at the Getty by David Newbury
USE ME: progressive integration of IIIF with new software services at the GettyUSE ME: progressive integration of IIIF with new software services at the Getty
USE ME: progressive integration of IIIF with new software services at the Getty
David Newbury96 views
IIIF Across Platforms | IIIF Community Call, January 2021 by David Newbury
IIIF Across Platforms | IIIF Community Call, January 2021IIIF Across Platforms | IIIF Community Call, January 2021
IIIF Across Platforms | IIIF Community Call, January 2021
David Newbury190 views
IIIF Canvases as First Class Citizens by David Newbury
IIIF Canvases as First Class CitizensIIIF Canvases as First Class Citizens
IIIF Canvases as First Class Citizens
David Newbury127 views
IIIF and Linked Open Data: LODLAM 2020 by David Newbury
IIIF and Linked Open Data: LODLAM 2020IIIF and Linked Open Data: LODLAM 2020
IIIF and Linked Open Data: LODLAM 2020
David Newbury193 views
How to Fail Interdisciplinarily by David Newbury
How to Fail InterdisciplinarilyHow to Fail Interdisciplinarily
How to Fail Interdisciplinarily
David Newbury223 views
Sharing Data Across Memory Institutions by David Newbury
Sharing Data Across Memory InstitutionsSharing Data Across Memory Institutions
Sharing Data Across Memory Institutions
David Newbury272 views
NDSR Learning Enrichment: Data Models and Linked Data by David Newbury
NDSR Learning Enrichment: Data Models and Linked DataNDSR Learning Enrichment: Data Models and Linked Data
NDSR Learning Enrichment: Data Models and Linked Data
David Newbury369 views
Fuzzy Dates & the Digital Humanities by David Newbury
Fuzzy Dates & the Digital HumanitiesFuzzy Dates & the Digital Humanities
Fuzzy Dates & the Digital Humanities
David Newbury1.5K views
Telling Stories With Data: Class 1 by David Newbury
Telling Stories With Data: Class 1Telling Stories With Data: Class 1
Telling Stories With Data: Class 1
David Newbury433 views
Art Tracks: From Provenance to Structured Data by David Newbury
Art Tracks: From Provenance to Structured DataArt Tracks: From Provenance to Structured Data
Art Tracks: From Provenance to Structured Data
David Newbury407 views
Linked Data: Worse is Better by David Newbury
Linked Data:  Worse is BetterLinked Data:  Worse is Better
Linked Data: Worse is Better
David Newbury246 views
Art Tracks: A technical deep dive. by David Newbury
Art Tracks:  A technical deep dive.Art Tracks:  A technical deep dive.
Art Tracks: A technical deep dive.
David Newbury851 views
Using Linked Data: American Art Collaborative, Oct. 3, 2016 by David Newbury
Using Linked Data:  American Art Collaborative, Oct. 3, 2016Using Linked Data:  American Art Collaborative, Oct. 3, 2016
Using Linked Data: American Art Collaborative, Oct. 3, 2016
David Newbury175 views
Data 101: Making Charts from Spreadsheets by David Newbury
Data 101: Making Charts from SpreadsheetsData 101: Making Charts from Spreadsheets
Data 101: Making Charts from Spreadsheets
David Newbury798 views
IIIF For Small Projects by David Newbury
IIIF  For Small ProjectsIIIF  For Small Projects
IIIF For Small Projects
David Newbury2.2K views
Authority Cascades: A presentation strategy for Linked Open Data by David Newbury
Authority Cascades: A presentation strategy for Linked Open DataAuthority Cascades: A presentation strategy for Linked Open Data
Authority Cascades: A presentation strategy for Linked Open Data
David Newbury416 views

Recently uploaded

Optimizing Communication to Optimize Human Behavior - LCBM by
Optimizing Communication to Optimize Human Behavior - LCBMOptimizing Communication to Optimize Human Behavior - LCBM
Optimizing Communication to Optimize Human Behavior - LCBMYaman Kumar
38 views49 slides
Redefining the book supply chain: A glimpse into the future - Tech Forum 2023 by
Redefining the book supply chain: A glimpse into the future - Tech Forum 2023Redefining the book supply chain: A glimpse into the future - Tech Forum 2023
Redefining the book supply chain: A glimpse into the future - Tech Forum 2023BookNet Canada
44 views19 slides
Cencora Executive Symposium by
Cencora Executive SymposiumCencora Executive Symposium
Cencora Executive Symposiummarketingcommunicati21
160 views14 slides
Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P... by
Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P...Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P...
Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P...ShapeBlue
196 views62 slides
Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De... by
Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De...Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De...
Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De...Moses Kemibaro
35 views38 slides
2FA and OAuth2 in CloudStack - Andrija Panić - ShapeBlue by
2FA and OAuth2 in CloudStack - Andrija Panić - ShapeBlue2FA and OAuth2 in CloudStack - Andrija Panić - ShapeBlue
2FA and OAuth2 in CloudStack - Andrija Panić - ShapeBlueShapeBlue
152 views23 slides

Recently uploaded(20)

Optimizing Communication to Optimize Human Behavior - LCBM by Yaman Kumar
Optimizing Communication to Optimize Human Behavior - LCBMOptimizing Communication to Optimize Human Behavior - LCBM
Optimizing Communication to Optimize Human Behavior - LCBM
Yaman Kumar38 views
Redefining the book supply chain: A glimpse into the future - Tech Forum 2023 by BookNet Canada
Redefining the book supply chain: A glimpse into the future - Tech Forum 2023Redefining the book supply chain: A glimpse into the future - Tech Forum 2023
Redefining the book supply chain: A glimpse into the future - Tech Forum 2023
BookNet Canada44 views
Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P... by ShapeBlue
Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P...Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P...
Developments to CloudStack’s SDN ecosystem: Integration with VMWare NSX 4 - P...
ShapeBlue196 views
Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De... by Moses Kemibaro
Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De...Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De...
Don’t Make A Human Do A Robot’s Job! : 6 Reasons Why AI Will Save Us & Not De...
Moses Kemibaro35 views
2FA and OAuth2 in CloudStack - Andrija Panić - ShapeBlue by ShapeBlue
2FA and OAuth2 in CloudStack - Andrija Panić - ShapeBlue2FA and OAuth2 in CloudStack - Andrija Panić - ShapeBlue
2FA and OAuth2 in CloudStack - Andrija Panić - ShapeBlue
ShapeBlue152 views
Webinar : Desperately Seeking Transformation - Part 2: Insights from leading... by The Digital Insurer
Webinar : Desperately Seeking Transformation - Part 2:  Insights from leading...Webinar : Desperately Seeking Transformation - Part 2:  Insights from leading...
Webinar : Desperately Seeking Transformation - Part 2: Insights from leading...
Initiating and Advancing Your Strategic GIS Governance Strategy by Safe Software
Initiating and Advancing Your Strategic GIS Governance StrategyInitiating and Advancing Your Strategic GIS Governance Strategy
Initiating and Advancing Your Strategic GIS Governance Strategy
Safe Software184 views
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And... by ShapeBlue
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...
Enabling DPU Hardware Accelerators in XCP-ng Cloud Platform Environment - And...
ShapeBlue108 views
Why and How CloudStack at weSystems - Stephan Bienek - weSystems by ShapeBlue
Why and How CloudStack at weSystems - Stephan Bienek - weSystemsWhy and How CloudStack at weSystems - Stephan Bienek - weSystems
Why and How CloudStack at weSystems - Stephan Bienek - weSystems
ShapeBlue247 views
Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha... by ShapeBlue
Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha...Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha...
Mitigating Common CloudStack Instance Deployment Failures - Jithin Raju - Sha...
ShapeBlue183 views
Import Export Virtual Machine for KVM Hypervisor - Ayush Pandey - University ... by ShapeBlue
Import Export Virtual Machine for KVM Hypervisor - Ayush Pandey - University ...Import Export Virtual Machine for KVM Hypervisor - Ayush Pandey - University ...
Import Export Virtual Machine for KVM Hypervisor - Ayush Pandey - University ...
ShapeBlue120 views
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f... by TrustArc
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc Webinar - Managing Online Tracking Technology Vendors_ A Checklist f...
TrustArc176 views
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or... by ShapeBlue
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
Zero to Cloud Hero: Crafting a Private Cloud from Scratch with XCP-ng, Xen Or...
ShapeBlue199 views
CloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlue by ShapeBlue
CloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlueCloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlue
CloudStack Managed User Data and Demo - Harikrishna Patnala - ShapeBlue
ShapeBlue137 views
"Node.js Development in 2024: trends and tools", Nikita Galkin by Fwdays
"Node.js Development in 2024: trends and tools", Nikita Galkin "Node.js Development in 2024: trends and tools", Nikita Galkin
"Node.js Development in 2024: trends and tools", Nikita Galkin
Fwdays33 views
"Surviving highload with Node.js", Andrii Shumada by Fwdays
"Surviving highload with Node.js", Andrii Shumada "Surviving highload with Node.js", Andrii Shumada
"Surviving highload with Node.js", Andrii Shumada
Fwdays58 views
State of the Union - Rohit Yadav - Apache CloudStack by ShapeBlue
State of the Union - Rohit Yadav - Apache CloudStackState of the Union - Rohit Yadav - Apache CloudStack
State of the Union - Rohit Yadav - Apache CloudStack
ShapeBlue303 views
Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ... by ShapeBlue
Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ...Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ...
Live Demo Showcase: Unveiling Dell PowerFlex’s IaaS Capabilities with Apache ...
ShapeBlue129 views
Business Analyst Series 2023 - Week 4 Session 7 by DianaGray10
Business Analyst Series 2023 -  Week 4 Session 7Business Analyst Series 2023 -  Week 4 Session 7
Business Analyst Series 2023 - Week 4 Session 7
DianaGray10146 views

Introduction to Git for Artists