C# 클래스 LibGitUnite.UniteRepository

상속: LibGit2Sharp.Repository
파일 보기 프로젝트 열기: tawman/git-unite 1 사용 예제들

Private Properties

프로퍼티 타입 설명

공개 메소드들

메소드 설명
Unite ( IEnumerable sourcePaths, IEnumerable destinationPaths ) : void

Modified version of LibGit2Sharp.Index.Move without the OS file system checks to unite file with proper case path

Unite ( string sourcePath, string destinationPath ) : void

Modified version of LibGit2Sharp.Index.Move without the OS file system checks to unite file with proper case path

UniteRepository ( string path, GitUnite options ) : System

Extended LibGit2Sharp.Repository with the Unite version of the Move command

메소드 상세

Unite() 공개 메소드

Modified version of LibGit2Sharp.Index.Move without the OS file system checks to unite file with proper case path
public Unite ( IEnumerable sourcePaths, IEnumerable destinationPaths ) : void
sourcePaths IEnumerable List containing path of each file within the working directory which has to be renamed.
destinationPaths IEnumerable List containing target path of each file within the working directory.
리턴 void

Unite() 공개 메소드

Modified version of LibGit2Sharp.Index.Move without the OS file system checks to unite file with proper case path
public Unite ( string sourcePath, string destinationPath ) : void
sourcePath string The path of the file within the working directory which has to be renamed.
destinationPath string The target path of the file within the working directory.
리턴 void

UniteRepository() 공개 메소드

Extended LibGit2Sharp.Repository with the Unite version of the Move command
public UniteRepository ( string path, GitUnite options ) : System
path string /// The path to the git repository to open, can be either the path to the git directory (for non-bare repositories this /// would be the ".git" folder inside the working directory) or the path to the working directory. ///
options GitUnite Runtime command line options specified
리턴 System