예제 #1
0
 public void Update(FileUpsert file)
 {
     _api.Put().With(file).Stream(_repoPath + "/files", s => { });
 }
예제 #2
0
 public void Update(FileUpsert file)
 {
     api.Put().With(file).Stream(repoPath + GetFilePath(file.Path, file.Branch), s => { });
 }
예제 #3
0
 public Task UpdateAsync(FileUpsert file)
 {
     return(api.Put().With(file).StreamAsync(repoPath + GetFilePath(file.Path, file.Branch), s => Task.FromResult(0)));
 }
예제 #4
0
파일: FileClient.cs 프로젝트: Fresa/NGitLab
 public void Create(FileUpsert file)
 {
     _api.Post().With(file).Stream(_repoPath + "/files", (s, headers) => { });
 }