From the course: NetOps (DevOps for Network Engineers): Automating Networks

Unlock the full course today

Join today to access over 24,700 courses taught by industry experts.

Basic Git operations

Basic Git operations

- [Instructor] All right, let's look at some Git examples and operations. Before we start it, I want to point out, there's a Basic_Git_Operations.txt file attached along with this course that you could download and practice with. Many of the things we'll do in this section are common practices but we might not have time to go over all the commends, such as git diff or git remote or whatnot, but they're in this file for you to reference and so on. As we mentioned, Git operates in a distributive format. Every Git repository will contain the same history and changes, meaning everybody have the same exact copy. So if we lose one of them, everybody else's, if they're synchronized, then it could be restored and traced back all the way to the original creation of this repository. However, in practice, we typically have a centralized location that we ask everybody to synchronize to. So in this case, let's just say we use the…

Contents