• Stars
    star
    820
  • Rank 55,603 (Top 2 %)
  • Language
    C++
  • License
    MIT License
  • Created over 10 years ago
  • Updated 10 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Unreal Engine 5 Git LFS 2 Source Control Plugin (beta)

Unreal Engine 5 Git Source Control Plugin

release Git Plugin issues Join the chat at https://gitter.im/SRombauts/UE4GitPlugin UEGitPlugin is a simple Git Source Control Plugin for Unreal Engine 5.0, 5.1, 5.2 and 4.27.

Developed and contributed by Sébastien Rombauts 2014-2023 ([email protected])

  1. First version of the plugin has been integrated by default in UE4.7 in "beta version".
  2. This is a developement fork named "Git LFS 2" adding File Locks supported by Github.
  3. ProjectBorealis has been busy fixing and improving this plugin to make it work robustly with LFS Locks. See ProjectBorealis GitPlugin v3

Instructions

You need to install it into your Project Plugins/ folder, and it will overwrite (replace) the default "Git (beta version)" Source Control Provider with the "Git LFS 2" plugin.

Have a look at the Git Plugin Tutorial on the Wiki. (alternate link)

Written and contributed by Sebastien Rombauts ([email protected])

Source Control Login window to create a new workspace/a new repository: Source Control Login window - create a new repository

Source Control status tooltip, when hovering the Source Control icon in toolbar: Source Control Status Tooltip

Source Control top Menu, extended with a few commands specific to Git: Source Control Status Tooltip

Submit Files to Source Control window, to commit assets: Submit Files to Source Control

File History window, to see the changelog of an asset: History of a file

Visual Diffing of two revisions of a Blueprint:

Merge conflict of a Blueprint:

Status Icons:

New/Unsaved/Untracked Added Unchanged Modified Moved/Renamed

Supported features

  • initialize a new Git local repository ('git init') to manage your UE4 Game Project
    • can also create an appropriate .gitignore file as part of initialization
    • can also create a .gitattributes file to enable Git LFS (Large File System) as part of initialization
    • can also enable Git LFS 2.x File Locks as part of initialization
    • can also make the initial commit, with custom multi-line message
  • display status icons to show modified/added/deleted/untracked files, not at head and conflicted
  • show history of a file
  • visual diff of a blueprint against depot or between previous versions of a file
  • revert modifications of a file (works best with "Content Hot-Reload" experimental option of UE4.15, by default since 4.16)
  • add, delete, rename a file
  • checkin/commit a file (cannot handle atomically more than 50 files)
  • migrate an asset between two projects if both are using Git
  • solve a merge conflict on a blueprint
  • show current branch name in status text
  • Configure remote origin URL ('git remote add origin url')
  • Sync to Pull (rebase) the current branch if there is no local modified files
  • Push the current branch
  • Git LFS (Github, Gitlab, Bitbucket), git-annex, git-fat and git-media are working with Git 2.10+
  • Git LFS 2 File Locks
  • Git console command for the Editor
  • Windows, Mac and Linux

What cannot be done presently

  • Branch/Merge are not in the current Editor workflow
  • Amend a commit is not in the current Editor workflow
  • Revert All (using either "Stash" or "reset --hard")
  • Configure user name & email ('git config user.name' & git config user.email')
  • Authentication is not managed if needed for Sync (Pull)

Known issues

  • #34 "outside repository" fatal error

  • #37 Rebase workflow: conflicts not detected!

  • #41 UE-44637: Deleting an asset is unsuccessful if the asset is marked for add (since UE4.13)

  • #46 Merge Conflicts - Accept Target - causes engine to crash bug

  • #47 Git LFS conflict resolution not working

  • #49 Git LFS 2: False error in logs after a successful push

  • #51 Git LFS 2: cannot revert a modified/unchecked-out asset

  • #53 Git LFS 2: document the configuration and workflow

  • #54 Poor performances of 'lfs locks' on Windows command line

  • #55 Git LFS 2: Unlocking a renamed asset

  • missing localisation for git specific messages

  • displaying states of 'Engine' assets (also needs management of 'out of tree' files)

  • renaming a Blueprint in Editor leaves a redirector file, AND modify too much the asset to enable git to track its history through renaming

Getting started

Quick demo of the Git Plugin on Unreal Engine 4.12 (preview) Git Plugin on Unreal Engine 4.12 (preview)

Install Git

Under Windows 64bits, you should install the standard standalone Git for Windows (now comming with Git LFS 2 with File Locking) with default parameters, usually in "C:\Program Files\Git\bin\git.exe".

Then you have to configure your name and e-mail that will appear in each of your commits:

git config --global user.name "Sébastien Rombauts"
git config --global user.email [email protected]

Install this Git Plugin (dev) into your Game Project

Unreal Engine comes with a stable version of this plugin, so no need to install it.

This alternate "Git development plugin" needs to be installed into a subfolder or your Game Project "Plugins" directory (that is, you cannot install it into the Engine Plugins directory):

<YourGameProject>/Plugins

You will obviously only be able to use the plugin within this project.

See also the Plugins official Documentation

Activate Git Source Control for your Game Project

Load your Game Project in Unreal Engine, then open:

File->Connect To Source Control... -> Git
Project already managed by Git

If your project is already under Git (it contains a ".git" subfolder), just click on "Accept Settings". This connect the Editor to your local Git repository ("Depot").

Project not already under Git

Otherwise, the Git Plugin is able to create (initialize) a new local Git Repository with your project Assets and Sources files:

Click "Initialize project with Git" that will add all relevant files to source control and make the initial commit with the customizable message. When everything is done, click on "Accept Settings".

Using the Git Source Control Provider in the Unreal Engine Editor

The plugin mostly interacts with you local Git repository ("Depot"), not much with the remote server (usually "origin").

It displays Git status icons on top of assets in the Asset Browser:

  • No icon means that the file is under source control and unchanged since last commit, or ignored.
  • A red mark is for "modified" assets, that is the one that needs to be committed (so not the same as "Check-out" in Perforce/SVN/Plastic SCM).
  • A red cross is for "added" assets, that also needs to be committed
  • A blue lightning means "renamed".
  • A yellow exclamation point is for files in conflict after a merge, or is not at head (latest revision on the current remote branch).
  • A yellow question mark is for files not in source control.

TODO:

  • specifics of rename and redirectors, and "Fix Up Redirector in Folder" command
  • history / visual diff
  • CheckIn = Commit
  • CheckOut = Commit+Push+unlock (when using LFS 2)

See also the Source Control official Documentation

License

Copyright (c) 2014-2020 Sébastien Rombauts ([email protected])

Distributed under the MIT License (MIT) (See accompanying file LICENSE.txt or copy at http://opensource.org/licenses/MIT)

How to contribute

GitHub website

The most efficient way to help and contribute to this wrapper project is to use the tools provided by GitHub:

Contact

  • You can use the Unreal Engine forums.
  • You can also email me directly, I will answer any questions and requests.

Coding Style Guidelines

The source code follow the Unreal Engine official Coding Standard:

  • CamelCase naming convention, with a prefix letter to differentiate classes ('F'), interfaces ('I'), templates ('T')
  • files (.cpp/.h) are named like the class they contains
  • Doxygen comments, documentation is located with declaration, on headers
  • Use portable common features of C++11 like nullptr, auto, range based for, override keyword
  • Braces on their own line
  • Tabs to indent code, with a width of 4 characters

See also

More Repositories

1

SQLiteCpp

SQLiteC++ (SQLiteCpp) is a smart and easy to use C++ SQLite3 wrapper.
C
2,150
star
2

SimplexNoise

A Perlin's Simplex Noise C++ Implementation (1D, 2D, 3D)
C++
320
star
3

shared_ptr

A minimal shared/unique_ptr implementation to handle cases where boost/std::shared/unique_ptr are not available.
C++
178
star
4

UE4ProceduralMesh

UE4.7 Procedural Mesh Generation plugin
C++
169
star
5

UEPlasticPlugin

Plastic SCM Plugin for Unreal Engine
C++
148
star
6

LoggerCpp

LoggerC++ (LoggerCpp) is a simple, elegant and efficient C++ logger library.
C++
62
star
7

ecs

A small and easy C++ Entity-Component-System (ECS) library
Python
51
star
8

UE4QuickStart

Unreal Engine 4.10 C++ Programming Quick Start Tutorials
C++
34
star
9

HtmlBuilder

A simple C++ HTML Generator
C++
30
star
10

SQLiteCpp_Example

C++ Example project using SQLiteCpp as a Git submodule / CMake subdirectory
C++
25
star
11

UE4ArchVisDemo

Architecture Visualization Demo with Unreal Engine 4
14
star
12

UE4StealthGame

Unreal Engine 4 FPSGame C++ Template modified to become a Multiplayer Stealth Game
C++
12
star
13

cpp-skeleton

A simple skeleton for C++ development with CMake and Google Test.
C++
10
star
14

UE4CoopGame

Unreal Engine 4 C++ TPS Multiplayer Coop Game
C++
8
star
15

UE4_Paper2D_2048

Unreal Engine 4 Paper2D clone of 2048 (http://gabrielecirulli.github.io/2048/)
7
star
16

UE4ShooterGame

UE4.19 C++ Shooter Game
C++
6
star
17

SimplexNoiseCImg

A simple 2D Map Generator using my SimplexNoise and CImg
C
6
star
18

cmake-basics

Using the CMake tutorial to test Travis-CI
C++
6
star
19

CrashHandler

A basic Linux crash signal handler in C
C
6
star
20

UE4Tanks

Unreal Engine Tanks Tutorial from Epic Games currently on Twitch
C++
6
star
21

glload

The OpenGL Loading Library (GL Load) is the Unofficial OpenGL SDK library for initializing OpenGL's functions.
C
5
star
22

opengl-experiments

Some basic experiments with the Unofficial OpenGL SDK
C++
5
star
23

sdlman

Test SDL2 with CMake Travis CI AppVeyor...
C
4
star
24

ZMQCpp

ZMQC++ (ZMQCpp) is a smart and easy to use C++ wrapper of the ZeroMQ messaging library.
C++
4
star
25

cpp-algorithms

Experimenting with well known algorithms and data structures. Hash and random functions
C++
3
star
26

UE4BasicCode

Test of a basic C++ code project for Unreal Engine 4
C++
3
star
27

BoostHttpServer

Improvements on top of the Boost Asio HTTP server example
C++
3
star
28

UE4CustomSettings

C++
3
star
29

srombauts.github.io

SRombauts GitHub Pages
CSS
2
star
30

cpplint

cpplint checks for compliance with Google C++ Style Guide (with modifications)
Python
2
star
31

gltext

Simple C++ library to render text with Freetype2 and Harfbuzz under OpenGL 3
C++
2
star
32

UE4Menus

Unreal Engine 4 Main and Pause Menus using a dedicated level
2
star
33

glfw_fullscreen

Minimal application to demonstrate fullscreen glwf mode
C++
1
star
34

codingame-great-escape

My attempt at the CodinGame multiplayer contest "The Great Escape"
C++
1
star
35

UE4VrDevKit

UE4.21 demo with Oculus Go mobile Headset
1
star
36

freetype-experiments

Experiments with freetype2 and gltext in OpenGL
C++
1
star
37

cpp-basics

Small example to show some basic features of C++
C++
1
star
38

unique_ptr

Famous C++03 unique_ptr implementation rescued from the lost http://home.roadrunner.com/~hinnant/unique_ptr03.html
C++
1
star