Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ProjectBorealis/UEGitPlugin
Unreal Engine Git Source Control Plugin (refactored)
https://github.com/ProjectBorealis/UEGitPlugin
git-lfs hactoberfest ue4-plugin unreal-engine
Last synced: 27 days ago
JSON representation
Unreal Engine Git Source Control Plugin (refactored)
- Host: GitHub
- URL: https://github.com/ProjectBorealis/UEGitPlugin
- Owner: ProjectBorealis
- License: mit
- Created: 2018-11-10T14:21:17.000Z (about 6 years ago)
- Default Branch: dev
- Last Pushed: 2024-10-17T08:53:22.000Z (about 1 month ago)
- Last Synced: 2024-10-19T11:55:40.817Z (about 1 month ago)
- Topics: git-lfs, hactoberfest, ue4-plugin, unreal-engine
- Language: C++
- Homepage:
- Size: 86.7 MB
- Stars: 501
- Watchers: 24
- Forks: 104
- Open Issues: 36
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Unreal Engine Git Plugin
This is a refactor of the [Git LFS 2 plugin by SRombauts](https://github.com/SRombauts/UE4GitPlugin), with lessons learned from production
that include performance optimizations, new features and workflow improvements.## Features
* Multi-threaded locking/unlocking, greatly improving performance when locking/unlocking many files
* Remote lock status only checked when needed
* Added local lock cache for speeding up local operations
* Improved performance of repository file traversal
* Improved initialization logic
* Generally improved wording and UX throughout
* Greatly improved pull within editor
* Only refreshes changed files, which prevents crashes in large projects
* Uses rebase workflow to properly manage local work
* Added support for Status Branches, which check outdated files vs. remote across multiple branches
* Periodic background remote refresh to keep remote file statuses up to date
* Automatic handling of pushing from an outdated local copy
* Optimized status updates for successful operations
* Manage both lockable (assets, maps) and non-lockable files (configs, project file) in editor
* Improved status display in editor
* Integration with [PBSync](https://github.com/ProjectBorealis/PBSync) binaries syncing
* General improvements to performance and memory usage## Installation
Either install this into your project's `Plugins/` folder, or if you would like to install to the engine,
rename `Engine/Plugins/Developer/GitSourceControl.uplugin` to `Engine/Plugins/Developer/GitSourceControl.uplugin.disabled`
and then install this plugin to the `Engine/Plugins` folder.Please note that we do not provide precompiled binaries at this time, so you will need to use Visual Studio to compile the plugin.
### Note about .gitattributes and .gitignore
This plugin requires explicit file attributes for `*.umap` and `*.uasset`, rather than other approaches of using wildcards for the content folder (`Content/**`).
See [our own `.gitattributes`](https://github.com/ProjectBorealis/PBCore/blob/main/.gitattributes) for an example.
You may also want to check out [our robust `.gitignore`](https://github.com/ProjectBorealis/PBCore/blob/main/.gitignore) too.
### Note about authentication
We would highly recommend using HTTPS authentication for your Git repo.
This allows a single credential path to be used, with the robust and fast HTTPS support in LFS.
With [Git Credential Manager](https://github.com/GitCredentialManager/git-credential-manager), authenticating with HTTPS is also much easier, with a GUI available to authenticate with any Git provider.
### Note about Unreal configuration
#### Required
* The plugin makes the assumption that files are always explicitly added. We made this decision because it is beneficial for performance and our workflows. In `Config/DefaultEditorPerProjectUserSettings.ini`
```ini
[/Script/UnrealEd.EditorLoadingSavingSettings]
bSCCAutoAddNewFiles=False
```#### Recommended
* As a general revision control usability improvement, you can enable new checkout features in `Config/DefaultEditorPerProjectUserSettings.ini`. To enable auto-checkout on modification, which is great for OFPA and other workflows (but requires user attention to excessive locking of content):
```ini
[/Script/UnrealEd.EditorLoadingSavingSettings]
bAutomaticallyCheckoutOnAssetModification=True
bPromptForCheckoutOnAssetModification=False
```* OR, to enable auto-prompt on modification, which is a bit more upfront/intrusive in user flows, but more conservative with locking, flip the settings:
```ini
[/Script/UnrealEd.EditorLoadingSavingSettings]
bAutomaticallyCheckoutOnAssetModification=False
bPromptForCheckoutOnAssetModification=True
```---
* As another general usability improvement, you can set the editor to load any checked out packages for faster loading. In `Config/DefaultEditorPerProjectUserSettings.ini`:
```ini
[/Script/UnrealEd.EditorPerProjectUserSettings]
bAutoloadCheckedOutPackages=True
```---
* In `Config/DefaultEngine.ini` you can set this option to `1` to disable a feature that is unnecessary for Git (for performance):
```ini
[SystemSettingsEditor]
r.Editor.SkipSourceControlCheckForEditablePackages=1
```## Status Branches - Required Code Changes
Epic Games added Status Branches in 4.20, and this plugin has implemented support for them. See [Workflow on Fortnite](https://youtu.be/p4RcDpGQ_tI?t=1443) for more information. Here is an example of how you may apply it to your own game.
1. Make an `UUnrealEdEngine` subclass, preferrably in an editor only module, or guarded by `WITH_EDITOR`.
2. Add the following:```cpp
#include "ISourceControlModule.h"
#include "ISourceControlProvider.h"void UMyEdEngine::Init(IEngineLoop* InEngineLoop)
{
Super::Init(InEngineLoop);// Register state branches
const ISourceControlModule& SourceControlModule = ISourceControlModule::Get();
{
ISourceControlProvider& SourceControlProvider = SourceControlModule.GetProvider();
// Order matters. Lower values are lower in the hierarchy, i.e., changes from higher branches get automatically merged down.
// (Automatic merging requires an appropriately configured CI pipeline)
// With this paradigm, the higher the branch is, the stabler it is, and has changes manually promoted up.
const TArray Branches {"origin/develop", "origin/promoted"};
SourceControlProvider.RegisterStateBranches(Branches, TEXT("Content"));
}
}
```3. Set to use the editor engine in `Config/DefaultEngine.ini` (make sure the class name is `MyUnrealEdEngine` for a class called `UMyUnrealEdEngine`!):
```ini
[/Script/Engine.Engine]
UnrealEdEngine=/Script/MyModule.MyEdEngine
```5. In this example, `origin/promoted` is the highest tested branch. Any changes in this branch are asset changes that do not need testing, and get automatically merged down to `origin/develop`. This may be extended to involve multiple branches, like `origin/trunk`, `origin/main`, or whatever you may prefer, where changes may be cascaded from most-stable to least-stable automatically. With this paradigm, changes from less-stable branches are manually promoted to more-stable branches after a merge review.
**NOTE**: The second argument in `RegisterStateBranches` is Perforce specific and is ignored, but is meant to point to the relative content path.6. If you decide to implement the status branch code in a editor-only module, ensure the loading phase in the editor module is set to `Default` in your .uproject settings, like so: (Otherwise, the editor will likely have difficulty finding your subclass'd UUnrealEdEngine class.)
```json
{
"Name": "MyTestProjectEditor",
"Type": "Editor",
"LoadingPhase": "Default"
}
```## Status Branches - Conceptual Overview
This feature helps ensure you're not locking and modifying files that are out-of-date.
If a user is on **any** branch, regardless if it's tracking a branch included in the 'status branch' list, they will be **unable to checkout** files that have **more recent changes on the remote server** than they have on the local branch, **provided** those changes are in a branch in the **'status branch' list.**
* **If** the **remote branch with the changes** is **not** in the status branch list, the user will **not be notified of remote changes.**
* **If** the user makes changes to a **local branch** and **switches** to **another local branch**, the user will **not** be notified of their **own changes** to the other branch, **regardless** if it's in the 'status branch' list or not **(this feature only checks remote branches!)**
* **If** the user is tracking a remote branch that is in the status branch list, they will be **unable to lock stale files** (files that are changed up-stream).![Status Branch Overview](https://i.imgur.com/bY3igQI.png)
#### Note:
It's important to only release file locks after changes have been pushed to the server. The system has no way to determine that there are local changes to a file, so if you modify a locked file it's imperative that you push the changes to a remote branch included in the 'status branch' list so other users can see those changes and avoid modifying a stale file. Otherwise, you'll want to keep the file locked!
Additionally, if you're switching back and forth between two or more branches locally you'll need to keep track of what branch you've made changes to locked files, as the system will not prevent you from modifying the same locked file on multiple different branches!
#### Real-world example of the 'status branch' feature:
* The user has checked out the `develop` branch, but there is an up-stream change on `origin/develop` for `FirstPersonProjectileMaterial`, indicated with the **yellow** exclamation mark.
* There are also newer upstream changes on the `promoted` branch, indicated with the **red** exclamation mark. (NOTE: The plugin does not currently report the branch name the changes are on.)![Status Branch Feature in Action](https://iili.io/1HqPhg.webp)
## General In-Editor Usage
### Connecting to revision control:
Generally speaking, the field next to `Uses Git LFS 2 File Locking workflow` should match your Git server's `User Name`, like so:
(If you find that the checkmark turns blue shortly after checking out a file, then the LFS name is incorrect, update it to the name it says checked out the file)![Connecting to Revision Control](https://iili.io/1HzKep.webp)
### Checking out (locking) one or more assets:You can lock individual files or you can hold `shift` to select and lock multiple at once, which can be quite a bit faster than locking them individually.
![Checking out Multiple Assets](https://iili.io/1HYog9.webp)
### Unlocking one or more un-changed assets:You can unlock individual files or you can hold `shift` to select and unlock multiple at once, which can be quite a bit faster than unlocking them individually.
![Checking out Multiple Assets](https://iili.io/1HYzJe.webp)
### Locking every asset within a folder:You can lock every file in a folder by right clicking on the folder and clicking `Check Out`.
![Lock every asset in a folder](https://iili.io/1HYCfS.webp)
### Viewing locks:View the owner of a file lock simply by hovering over the asset icon. Your locked files have a **red** check-mark, other user's locks will show up with a **blue** checkmark.
![Viewing file locks](https://iili.io/1HYn07.webp)
### Pulling latest from within the editor:You can pull the latest changes from your currently checked-out branch within the editor. This doesn't always work smoothly, but effort has been made to improve this process. It is still recommended to always save changes before doing this, however.
![Pulling latest](https://iili.io/1HhumN.webp)
### Submitting changes up-stream:`Submit to revision control` will create a local commit, push it, and release your file lock.
(While you cannot check out branches within the plugin, it is fully branch-aware! In this scenario, the user has checked out the `develop` branch, so their change is pushed to `origin/develop`.)
![Submitting to revision control](https://iili.io/1HhI7R.webp)
## Additional ResourcesYou can learn more about how we set up our Git repository at [the PBCore wiki](https://github.com/ProjectBorealis/PBCore/wiki).