added UEGitPlugin
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
// Copyright (c) 2014-2022 Sebastien Rombauts (sebastien.rombauts@gmail.com)
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "CoreMinimal.h"
|
||||
|
||||
/**
|
||||
* Editor only console commands.
|
||||
*
|
||||
* Such commands can be executed from the editor output log window, but also from command line arguments,
|
||||
* from Editor Blueprints utilities, or from C++ Code using. eg. GEngine->Exec("git status Content/");
|
||||
*/
|
||||
class GitSourceControlConsole
|
||||
{
|
||||
public:
|
||||
// Git Command Line Interface: Run 'git' commands directly from the Unreal Editor Console.
|
||||
static void ExecuteGitConsoleCommand(const TArray<FString>& a_args);
|
||||
};
|
||||
Reference in New Issue
Block a user