(TWN) DevOps Prerequisite: Git Fundamentals
Git is one of the most important piece of technology for DevOps. It is what enables the Continuous integration (CI) in the CI/CD pipeline of DevOps. Ultimately, Git, CI/CD, DevOps all exist for one thing: SDLC (Software Delivery Life Cycle).How can we bring the software or the digital solution to the customer faster and more efficiently? And how can we ensure the reliability of the solution? SDLC is a topic that deserves its own article, in this article we will look into: What is Git? What is version control? Why is git important? What are the git commands? What is Git? Git is a distributed version control system designed to track changes in source code during software development with speed and data integrity. It allows developers and developer teams to collaborate, contribute and merge their codes seamlessly. What is Version Control? Version control is the practice of managing and tracking changes to software code over time. It acts as a historical ledger for a project, re...