本文整理汇总了C#中MonoDevelop.VersionControl.Repository.Add方法的典型用法代码示例。如果您正苦于以下问题:C# Repository.Add方法的具体用法?C# Repository.Add怎么用?C# Repository.Add使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MonoDevelop.VersionControl.Repository
的用法示例。
在下文中一共展示了Repository.Add方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: UpdateIsDone
public virtual void UpdateIsDone ()
{
string added = rootCheckout + "testfile";
File.Create (added).Close ();
repo.Add (added, false, new NullProgressMonitor ());
ChangeSet changes = repo.CreateChangeSet (repo.RootPath);
changes.AddFile (repo.GetVersionInfo (added, VersionInfoQueryFlags.IgnoreCache));
changes.GlobalComment = "test";
repo.Commit (changes, new NullProgressMonitor ());
PostCommit (repo);
// Checkout a second repository.
FilePath second = new FilePath (FileService.CreateTempDirectory () + Path.DirectorySeparatorChar);
Checkout (second, repoLocation);
repo2 = GetRepo (second, repoLocation);
added = second + "testfile2";
File.Create (added).Close ();
repo2.Add (added, false, new NullProgressMonitor ());
changes = repo.CreateChangeSet (repo.RootPath);
changes.AddFile (repo.GetVersionInfo (added, VersionInfoQueryFlags.IgnoreCache));
changes.GlobalComment = "test2";
repo2.Commit (changes, new NullProgressMonitor ());
PostCommit (repo2);
repo.Update (repo.RootPath, true, new NullProgressMonitor ());
Assert.True (File.Exists (rootCheckout + "testfile2"));
DeleteDirectory (second);
}
示例2: UpdateIsDone
public virtual void UpdateIsDone()
{
AddFile ("testfile", null, true, true);
PostCommit (Repo);
// Checkout a second repository.
FilePath second = new FilePath (FileService.CreateTempDirectory () + Path.DirectorySeparatorChar);
Checkout (second, RemoteUrl);
Repo2 = GetRepo (second, RemoteUrl);
ModifyPath (Repo2, ref second);
string added = second + "testfile2";
File.Create (added).Close ();
Repo2.Add (added, false, new NullProgressMonitor ());
ChangeSet changes = Repo2.CreateChangeSet (Repo2.RootPath);
changes.AddFile (Repo2.GetVersionInfo (added, VersionInfoQueryFlags.IgnoreCache));
changes.GlobalComment = "test2";
Repo2.Commit (changes, new NullProgressMonitor ());
PostCommit (Repo2);
Repo.Update (Repo.RootPath, true, new NullProgressMonitor ());
Assert.True (File.Exists (LocalPath + "testfile2"));
Repo2.Dispose ();
DeleteDirectory (second);
}