예제 #1
0
 public void Apply(ITfsWorkspace workspace)
 {
     workspace.Edit(Path);
     workspace.Rename(Path, PathTo, Score);
     var workspaceFile = workspace.GetLocalPath(PathTo);
     _repository.GetBlob(NewSha, workspaceFile);
 }
예제 #2
0
        public void Apply(ITfsWorkspace workspace)
        {
            workspace.Edit(Path);
            var workspaceFile = workspace.GetLocalPath(Path);

            _repository.CopyBlob(NewSha, workspaceFile);
        }
예제 #3
0
 public void Apply(ITfsWorkspace workspace)
 {
     workspace.Edit(_path);
     workspace.Rename(_path, _pathTo);
     var workspaceFile = workspace.GetLocalPath(_pathTo);
     _repository.GetBlob(_newSha, workspaceFile);
 }
예제 #4
0
        public void Apply(ITfsWorkspace workspace)
        {
            workspace.Edit(Path);
            workspace.Rename(Path, PathTo, Score);
            var workspaceFile = workspace.GetLocalPath(PathTo);

            _repository.GetBlob(NewSha, workspaceFile);
        }
예제 #5
0
파일: Modify.cs 프로젝트: runt18/git-tfs
 public void Apply(ITfsWorkspace workspace)
 {
     workspace.Edit(Path);
     var workspaceFile = workspace.GetLocalPath(Path);
     _repository.CopyBlob(NewSha, workspaceFile);
 }