We may earn an affiliate commission when you visit our partners.
Course image
Udemy logo

The Ultimate Git Course - with Applications in Unreal Engine

Stephen Ulibarri

Every developer must learn version control. If you wish to get a job in the games industry or software industry, you WILL learn these skills. If you already know them, you're MUCH more likely to get hired.

Read more

Every developer must learn version control. If you wish to get a job in the games industry or software industry, you WILL learn these skills. If you already know them, you're MUCH more likely to get hired.

Learn the fundamental operations in the Git version control system. We will start out with the most basic operations, running Git commands from the command line. We begin version controlling basic text files to see how Git works, before moving on to real projects. We create C++ projects in Visual Studio and VS Code, before moving on to Unreal Engine C++ projects using both Unreal Engine 4 and 5.

Learn how to stage changes, commit, branch, merge, and resolve merge conflicts, rebase, cherry pick, stash, and more. Create online remote repositories hosted by GitHub, and fetch and pull from the remotes to your local machine, push from your local repository to the remote, and clone and fork operations. Learn how to submit and approve pull requests, allowing you to contribute to other developer's online projects version controlled by Git.

Learn how to set up Unreal Engine 4 and 5 projects with version control, allowing you to make experimental branches, commit your changes and revert, reset and rebase, and push all your changes to an online repository. Version control large files in your Unreal Engine projects by initializing Git LFS (Large File Storage) and learn how to create proper .gitignore and .gitattributes files so your projects are version controlled smoothly.

Get an edge over your competitors for jobs in the industry. Enroll today.

Enroll now

What's inside

Learning objectives

  • How git works
  • How to use git from the command line
  • Using git tools such as github, the github desktop app, git tools in visual studio and vs code
  • Using git to track an unreal engine project in both unreal engine 5 and unreal engine 4
  • Using git to version control c++ projects in visual studio and visual studio code
  • Understanding the concepts of git so they can use any git based tool
  • Creating a repository
  • Committing to the repository
  • Branching, merging, rebasing, cherry picking, stashing
  • Reverting to previous versions of the project and rewriting commit history
  • Customizing git with text editors of choice
  • Resolving merge commits with different merge tools, and much more!
  • Show more
  • Show less

Syllabus

We learn what Git is, how it works, a little bit of Git history, and we install it on Windows, Mac, and Linux machines.

Learn why you need to understand version control and how Git can make you much more likely to get hired in the games or software industry.

Read more

We introduce Version Control, and discuss what it does for projects.

A short quiz on Version Control Systems

Git was created out of the need for a free version control system for the community developing the Linux kernel.

We discuss the operations that are done with Git, how they work, and a common workflow of branching off of the main project, creating a new feature, then merging that feature back in.

A short quiz on some of the operations used in Git

We go through the steps to install git on the Windows, Mac, and Linux operating systems.

We discuss some basic terminal commands that work on the Windows, Mac, and Linux operating systems. Download a cheat sheet in the resources for this video, as well as the PDF for the practice exercise!

A short quiz on the commands you can run from the terminal

We will create our own Git repository and learn the basic operations such as tracking files, staging, and committing.

We initialize our very first Git repository! We also see that this creates a new folder called .git, which holds all the files and folders associated with the new repository.

A short quiz on what you've learned while creating your first repository

We discuss Git's config files and how they contain configuration settings for Git. We talk about local, global and system-wide versions of these, and we set our global user name and email for Git.

A short quiz about Git's config files

We learn how Git adds files to be tracked, and how tracked changes are added to the staging area with git add. We can undo unstaged files with git restore.

A short quiz on what you've learned about tracking files and the staging area (index).

We learn how to make our first commit! This involves typing out a commit message in Git's message editor.

A short quiz on making commits.

We learn what these mysterious commit IDs are, how they're generated, and how Git uses them to identify and compare objects. We learn about Git's object store, which contains four different types of objects in a Git repository.

A short quiz on commit IDs and Git's object store

We learn how to remove a file from the Index to unstage its changes, but keep them in the working directory. We also learn how to amend the previous commit by adding changes to it and optionally changing its commit message.

A short quiz on unstaging and amending the previous commit.

We learn about one of the most fundamental aspects of a Git repository: the .gitignore. We create a .gitignore and learn how to designate certain files and folders to be ignored.

We learn some useful shortcuts to make our lives easier while using Git, including staging all changes, stage all but new files, and committing with a single command.

A quiz on the useful shortcuts you've learned.

We learn how to revert commits, undoing them and keeping the record as a new commit. We then learn how to discard the latest n commits entirely with git reset HEAD~.

We learn about how branches work, how to create them, and how to switch between them.

We learn how branches work, how to create them, how to switch between them, and how Git changes our working directory based on the branch we're on.

A quiz on branching.

We learn how to merge branches, as well as delete branches once we're done with them.

Testing your understanding of Merging.

We learn about the rebase and how it can make our commit history cleaner.

Testing your comprehension of rebasing.

We learn how merge conflicts are created and how to resolve them.

Testing your understanding of merge conflicts

We will learn how to set up remote repositories with free online providers such as GitHub!

We learn about remote repositories and how they work regarding commits on our local machine.

We create a new GitHub account and a new remote repository.

We learn about the SSH and HTTPS protocols for sending information to and from a remote repository.

We learn how remote tracking branches are created to inform us of the current status of the remote origin.

We learn more operations on branches, including adding more branches to the remote, deleting upstream branches, and the force push.

Testing your understanding about online repositories

We will learn interactive rebasing, stashing, cherry picking, and changing our Git text editor.

We learn how to change the text editor for Git, and even use the Git bash inside VS Code.

We learn how to squash commits and reorder them in the interactive rebase.

We learn how to stash changes in the working directory and view, retrieve, and drop those stashed changes.

We learn how to pull in a specific commit from another branch without merging or rebasing the whole branch.

A quiz on manipulating the history of your branches

We learn how to set up Git with actual projects in Visual Studio, VS Code, and Unreal Engine

We create an actual C++ project in Visual Studio and set it up to track a remote repo on GitHub.

We learn the common Git operations in Visual Studio including branching, merging, pushing, and pulling to and from the origin.

We use Visual Studio to resolve merge conflicts, cherry pick, and stash changes!

We connect a VS Code project to source control and set it to track a remote branch.

We set up an Unreal Engine project to be version controlled and create an online remote repo for it!

We perform common Git operations in our Unreal Engine project, including branching, merging, and pushing/pulling.

We set up an Unreal Engine 5 project to be version controlled and linked to an online remote repository!

We perform common Git operations with our Unreal Engine 5 project, including branching, merging, pushing and pulling.

We learn what Pull Requests are, how to make them, and challenge ourselves to submit one to one of the repos for this course!

We learn how to install and use the GitHub Desktop app, and see just how easy it is because we already know how all the git operations work!

Good to know

Know what's good
, what to watch for
, and possible dealbreakers
Teaches industry-standard version control practices like branching and merging
Develops skills highly relevant in the software and games industries
Builds a strong foundation for beginners who want to learn about Git version control
Covers specific industry-relevant details of version controlling Unreal Engine projects
Requires learners to install and use specific software on their own computers
May require learners to purchase additional software or materials not included in the course

Save this course

Save The Ultimate Git Course - with Applications in Unreal Engine to your list so you can find it easily later:
Save

Activities

Be better prepared before your course. Deepen your understanding during and after it. Supplement your coursework and achieve mastery of the topics covered in The Ultimate Git Course - with Applications in Unreal Engine with these activities:
Practice Git Commands
Reinforce your understanding of Git commands through hands-on practice.
Show steps
  • Use online platforms or resources for interactive Git command practice
  • Create a personal project and track changes using Git commands
  • Collaborate with peers on a shared Git repository
Engage in Peer Study Sessions
Foster collaboration and enhance understanding by participating in peer study sessions.
Show steps
  • Find a study partner or group with similar interests
  • Schedule regular study sessions to discuss course material and practice Git commands
  • Take turns explaining concepts and helping each other with challenges
Read "Pro Git"
Deepen your understanding of Git by reading the comprehensive book "Pro Git".
Show steps
  • Acquire a copy of the book and set aside dedicated time for reading
  • Read through each chapter thoroughly, taking notes and highlighting important concepts
  • Apply the knowledge gained to your Git practice and projects
Show all three activities

Career center

Learners who complete The Ultimate Git Course - with Applications in Unreal Engine will develop knowledge and skills that may be useful to these careers:

Reading list

We haven't picked any books for this reading list yet.

Share

Help others find this course page by sharing it with your friends and followers:

Similar courses

Here are nine courses similar to The Ultimate Git Course - with Applications in Unreal Engine.
Introduction to C++ Programming and Unreal
Most relevant
Control Rig for Unreal Engine 5
Most relevant
Intermediate Object-Oriented Programming for Unreal Games
Most relevant
The Unreal Arsenal: Learn C++ and Unreal Engine
Most relevant
Unreal Engine Blueprint Game Developer
Most relevant
Version Control in Java: Update Your App with Git
Most relevant
Git Essentials: Mastering Version Control
Most relevant
Version Control
Most relevant
Unreal Engine 5 C++ Developer: Learn C++ & Make Video...
Most relevant
Our mission

OpenCourser helps millions of learners each year. People visit us to learn workspace skills, ace their exams, and nurture their curiosity.

Our extensive catalog contains over 50,000 courses and twice as many books. Browse by search, by topic, or even by career interests. We'll match you to the right resources quickly.

Find this site helpful? Tell a friend about us.

Affiliate disclosure

We're supported by our community of learners. When you purchase or subscribe to courses and programs or purchase books, we may earn a commission from our partners.

Your purchases help us maintain our catalog and keep our servers humming without ads.

Thank you for supporting OpenCourser.

© 2016 - 2024 OpenCourser