Video description
Build powerful and effective projects using Git Version Control Systems
About This Video
- Learn how to create, contribute to, and collaborate on software projects using Git
- Understand its fundamental features, and find out what sets it apart from other Version Control Systems
- Become a valued contributor to any project with Git usage and etiquette guidelines that other developers will thank you for
In Detail
Git Version Control Systems (VCS) changes your approach to modern software engineering. Using Git, you can easily track the history of file and code changes, deliver new versions of software without relying on any continuous delivery mechanisms, and protect your code from any mistakes made while programming.
In this course, we’ll teach you the basics of using Git and explain how it works. To begin with, we’ll show you how to install Git and effectively use your computer’s terminal or command line to navigate the file system, and create and edit files. Then we’ll cover all the commonly used commands in Git that make up the vast majority of any Software Engineer’s workflow.
Moving on, we’ll explain Git’s branching workflow, why it’s such a useful feature, and how to use it in your projects. Once you’ve learned all this, we’ll discuss some advanced Git workflow techniques that will make you a valued contributor and collaborator on any project. You’ll be able to create your own Git repositories, or clone and contribute to existing ones. This will allow you to track the changes to sets of files over time, recover data you might lose, and collaborate with others on projects.
You’ll have a profound understanding of Git’s branching workflow, and how to use it in the best possible way in your projects.
By the end, you’ll be familiar with using Git and use VCS to handle large projects easily and make well-crafted contributions to your own or others’ projects.
Audience
This course is designed for developers, software engineers, and project managers who want to use Git to deliver their projects better and faster.
Table of Contents
Chapter 1 : Version Control and the Terminal
The Course Overview
What Is Version Control?
Installing and Configuring Git
What Is the Terminal?
File System Navigation Using Your Terminal
Manipulating Files and Folders
Using VI as an Editor
Chapter 2 : Learning the Basics of Git
Configuring and Initializing a Repository
Tracking Files
Viewing Changes
Committing Your Changes
Setup Git Ignore Files
Browsing Project History
Undoing Mistakes
Cloning Repositories
Using Remote Repositories
Using Tags in Git
Chapter 3 : Branches and Workflows
What Is a Branch?
Creating New Branches
Merging Branches
Resolving Merge Conflicts
Remote Branches
Rebasing
Chapter 4 : Advanced Git Workflow
GitHub
Forking Repositories
Commit Guidelines
Squashing Commits
Merge Requests
Aliasing Commands