C# Класс LibGitUnite.UniteRepository

Наследование: LibGit2Sharp.Repository
Показать файл Открыть проект Примеры использования класса

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