C# Class LibGitUnite.UniteRepository

Inheritance: LibGit2Sharp.Repository
Afficher le fichier Open project: tawman/git-unite Class Usage Examples

Private Properties

Свойство Type Description

Méthodes publiques

Méthode 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 méthode

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.
Résultat void

Unite() public méthode

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.
Résultat void

UniteRepository() public méthode

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
Résultat System