C# Class LibGitUnite.UniteRepository

Inheritance: LibGit2Sharp.Repository
ファイルを表示 Open project: tawman/git-unite Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
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

Method Details

Unite() public method

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.
return void

Unite() public method

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.
return void

UniteRepository() public method

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
return System