コード例 #1
0
 public CherryPickResult CherryPick(Commit commit, Signature committer, CherryPickOptions options = null)
 {
     throw new NotImplementedException();
 }
コード例 #2
0
ファイル: NodeRepository.cs プロジェクト: kaiyote/nodeWrapper
 public CherryPickResult CherryPick(Commit commit, Signature signature, CherryPickOptions options = null)
 {
     return Repository.CherryPick(commit, signature, options ?? new CherryPickOptions());
 }