本文整理匯總了C#中MonoDevelop.VersionControl.Git.GitRepository.Push方法的典型用法代碼示例。如果您正苦於以下問題:C# GitRepository.Push方法的具體用法?C# GitRepository.Push怎麽用?C# GitRepository.Push使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類MonoDevelop.VersionControl.Git.GitRepository
的用法示例。
在下文中一共展示了GitRepository.Push方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: Push
public static void Push (GitRepository repo)
{
var dlg = new PushDialog (repo);
try {
if (MessageService.RunCustomDialog (dlg) != (int) Gtk.ResponseType.Ok)
return;
string remote = dlg.SelectedRemote;
string branch = dlg.SelectedRemoteBranch ?? repo.GetCurrentBranch ();
ProgressMonitor monitor = VersionControlService.GetProgressMonitor (GettextCatalog.GetString ("Pushing changes..."), VersionControlOperationType.Push);
ThreadPool.QueueUserWorkItem (delegate {
try {
repo.Push (monitor, remote, branch);
} catch (Exception ex) {
monitor.ReportError (ex.Message, ex);
} finally {
monitor.Dispose ();
}
});
} finally {
dlg.Destroy ();
dlg.Dispose ();
}
}
示例2: Push
public static void Push (GitRepository repo)
{
PushDialog dlg = new PushDialog (repo);
if (dlg.Run () == (int) Gtk.ResponseType.Ok) {
string remote = dlg.SelectedRemote;
string branch = dlg.SelectedRemoteBranch;
dlg.Destroy ();
IProgressMonitor monitor = IdeApp.Workbench.ProgressMonitors.GetOutputProgressMonitor ("Version Control", "md-version-control", false, true);
System.Threading.ThreadPool.QueueUserWorkItem (delegate {
try {
repo.Push (monitor, remote, branch);
} catch (Exception ex) {
monitor.ReportError (ex.Message, ex);
} finally {
monitor.Dispose ();
}
});
} else
dlg.Destroy ();
}
示例3: Push
public static void Push (GitRepository repo)
{
PushDialog dlg = new PushDialog (repo);
if (dlg.Run () == (int) Gtk.ResponseType.Ok) {
string remote = dlg.SelectedRemote;
string branch = dlg.SelectedRemoteBranch;
dlg.Destroy ();
IProgressMonitor monitor = VersionControlService.GetProgressMonitor (GettextCatalog.GetString ("Pushing changes..."));
System.Threading.ThreadPool.QueueUserWorkItem (delegate {
try {
repo.Push (monitor, remote, branch);
} catch (Exception ex) {
monitor.ReportError (ex.Message, ex);
} finally {
monitor.Dispose ();
}
});
} else
dlg.Destroy ();
}