- Davide - DevOps Foundations Sessions 4 and 5 [slide deck]
- Agile, Scrum, Kanban, ITSM (ITIL), Lean, Kata
- Core Values of Devops
- Culture - two way communication, respect, trust, transparency, reflection, remove silos between dev and ops
- Collaboration
- Automation - principles, tools ("periodic table"), first steps / practices, devSecOps toolchain
- Measurement - measuring process speed, software quality, stability, culture
- Sharing
- Lean
- Agile
- Joe - Intro to Git
- Create new repository in your github account
- Clone repository to work on it locally
- In Terminal (Mac: /Applications/Utilities/Terminal.app), run:
- git clone "https://github.com/myusername/my_repo.git"
- Add a new file to repo? Stage it:
- Want to save your progress? Commit them:
- git commit -m "my commit message"
- Not sure what's changed and what hasn't? Check your status:
- Push code back up to the repository
- Interesting reads & reference materials
- First segment: Origin of DevOps and Lean - Japanese automakers (Toyota):
- Second segment: Git
- Free interactive courses (Codecademy):
- BASH (bourne-again shell) / Command Line / Mac Terminal:
- Git: