本文整理汇总了C#中GitCommands.GitModule.GetSetting方法的典型用法代码示例。如果您正苦于以下问题:C# GitModule.GetSetting方法的具体用法?C# GitModule.GetSetting怎么用?C# GitModule.GetSetting使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GitCommands.GitModule
的用法示例。
在下文中一共展示了GitModule.GetSetting方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: RunScript
internal static bool RunScript(IWin32Window owner, GitModule aModule, ScriptInfo scriptInfo, RevisionGrid revisionGrid)
{
string originalCommand = scriptInfo.Command;
string argument = scriptInfo.Arguments;
string command = OverrideCommandWhenNecessary(originalCommand);
var allSelectedRevisions = new List<GitRevision>();
GitRevision selectedRevision = null;
GitRevision currentRevision = null;
var selectedLocalBranches = new List<GitRef>();
var selectedRemoteBranches = new List<GitRef>();
var selectedRemotes = new List<string>();
var selectedBranches = new List<GitRef>();
var selectedTags = new List<GitRef>();
var currentLocalBranches = new List<GitRef>();
var currentRemoteBranches = new List<GitRef>();
var currentRemote = "";
var currentBranches = new List<GitRef>();
var currentTags = new List<GitRef>();
foreach (string option in Options)
{
if (string.IsNullOrEmpty(argument) || !argument.Contains(option))
continue;
if (option.StartsWith("{c") && currentRevision == null)
{
currentRevision = GetCurrentRevision(aModule, revisionGrid, currentTags, currentLocalBranches, currentRemoteBranches, currentBranches, currentRevision);
if (currentLocalBranches.Count == 1)
currentRemote = aModule.GetSetting(string.Format("branch.{0}.remote", currentLocalBranches[0].Name));
else
{
currentRemote = aModule.GetCurrentRemote();
if (string.IsNullOrEmpty(currentRemote))
currentRemote = aModule.GetSetting(string.Format("branch.{0}.remote",
askToSpecify(currentLocalBranches, "Current Revision Branch")));
}
}
else if (option.StartsWith("{s") && selectedRevision == null && revisionGrid != null)
{
allSelectedRevisions = revisionGrid.GetSelectedRevisions();
allSelectedRevisions.Reverse(); // Put first clicked revisions first
selectedRevision = CalculateSelectedRevision(revisionGrid, selectedRemoteBranches, selectedRemotes, selectedLocalBranches, selectedBranches, selectedTags);
}
string remote;
string url;
switch (option)
{
case "{sHashes}":
argument = argument.Replace(option,
string.Join(" ", allSelectedRevisions.Select(revision => revision.Guid).ToArray()));
break;
case "{sTag}":
if (selectedTags.Count == 1)
argument = argument.Replace(option, selectedTags[0].Name);
else if (selectedTags.Count != 0)
argument = argument.Replace(option, askToSpecify(selectedTags, "Selected Revision Tag"));
else
argument = argument.Replace(option, "");
break;
case "{sBranch}":
if (selectedBranches.Count == 1)
argument = argument.Replace(option, selectedBranches[0].Name);
else if (selectedBranches.Count != 0)
argument = argument.Replace(option,
askToSpecify(selectedBranches, "Selected Revision Branch"));
else
argument = argument.Replace(option, "");
break;
case "{sLocalBranch}":
if (selectedLocalBranches.Count == 1)
argument = argument.Replace(option, selectedLocalBranches[0].Name);
else if (selectedLocalBranches.Count != 0)
argument = argument.Replace(option,
askToSpecify(selectedLocalBranches,
"Selected Revision Local Branch"));
else
argument = argument.Replace(option, "");
break;
case "{sRemoteBranch}":
if (selectedRemoteBranches.Count == 1)
argument = argument.Replace(option, selectedRemoteBranches[0].Name);
else if (selectedRemoteBranches.Count != 0)
argument = argument.Replace(option,
askToSpecify(selectedRemoteBranches,
"Selected Revision Remote Branch"));
else
argument = argument.Replace(option, "");
break;
case "{sRemote}":
if (selectedRemotes.Count == 0)
{
argument = argument.Replace(option, "");
break;
}
if (selectedRemotes.Count == 1)
remote = selectedRemotes[0];
//.........这里部分代码省略.........
示例2: RunScript
internal static void RunScript(IWin32Window owner, GitModule aModule, ScriptInfo scriptInfo, RevisionGrid revisionGrid)
{
string command = scriptInfo.Command;
string argument = scriptInfo.Arguments;
command = OverrideCommandWhenNecessary(command);
GitRevision selectedRevision = null;
GitRevision currentRevision = null;
var selectedLocalBranches = new List<GitRef>();
var selectedRemoteBranches = new List<GitRef>();
var selectedRemotes = new List<string>();
var selectedBranches = new List<GitRef>();
var selectedTags = new List<GitRef>();
var currentLocalBranches = new List<GitRef>();
var currentRemoteBranches = new List<GitRef>();
var currentRemote = "";
var currentBranches = new List<GitRef>();
var currentTags = new List<GitRef>();
foreach (string option in Options)
{
if (string.IsNullOrEmpty(argument) || !argument.Contains(option))
continue;
if (!option.StartsWith("{s") || selectedRevision != null)
{
currentRevision = GetCurrentRevision(aModule, revisionGrid, currentTags, currentLocalBranches, currentRemoteBranches, currentBranches, currentRevision, option);
if (currentLocalBranches.Count == 1)
currentRemote = aModule.GetSetting(string.Format("branch.{0}.remote", currentLocalBranches[0].Name));
else
{
currentRemote = aModule.GetCurrentRemote();
if (string.IsNullOrEmpty(currentRemote))
currentRemote = aModule.GetSetting(string.Format("branch.{0}.remote",
askToSpecify(currentLocalBranches, "Current Revision Branch")));
}
}
else
{
selectedRevision = CalculateSelectedRevision(revisionGrid, selectedRemoteBranches, selectedRemotes, selectedLocalBranches, selectedBranches, selectedTags);
}
string remote;
string url;
switch (option)
{
case "{sTag}":
if (selectedTags.Count == 1)
argument = argument.Replace(option, selectedTags[0].Name);
else if (selectedTags.Count != 0)
argument = argument.Replace(option, askToSpecify(selectedTags, "Selected Revision Tag"));
else
argument = argument.Replace(option, "");
break;
case "{sBranch}":
if (selectedBranches.Count == 1)
argument = argument.Replace(option, selectedBranches[0].Name);
else if (selectedBranches.Count != 0)
argument = argument.Replace(option,
askToSpecify(selectedBranches, "Selected Revision Branch"));
else
argument = argument.Replace(option, "");
break;
case "{sLocalBranch}":
if (selectedLocalBranches.Count == 1)
argument = argument.Replace(option, selectedLocalBranches[0].Name);
else if (selectedLocalBranches.Count != 0)
argument = argument.Replace(option,
askToSpecify(selectedLocalBranches,
"Selected Revision Local Branch"));
else
argument = argument.Replace(option, "");
break;
case "{sRemoteBranch}":
if (selectedRemoteBranches.Count == 1)
argument = argument.Replace(option, selectedRemoteBranches[0].Name);
else if (selectedRemoteBranches.Count != 0)
argument = argument.Replace(option,
askToSpecify(selectedRemoteBranches,
"Selected Revision Remote Branch"));
else
argument = argument.Replace(option, "");
break;
case "{sRemote}":
if (selectedRemotes.Count == 0)
{
argument = argument.Replace(option, "");
break;
}
if (selectedRemotes.Count == 1)
remote = selectedRemotes[0];
else
remote = askToSpecify(selectedRemotes, "Selected Revision Remote");
argument = argument.Replace(option, remote);
break;
case "{sRemoteUrl}":
if (selectedRemotes.Count == 0)
{
//.........这里部分代码省略.........