Property | Type | Description | |
---|---|---|---|
currentRemote | string |
Method | Description | |
---|---|---|
CheckoutBranch ( string branchName ) : void | ||
Commit ( string commitMessage, string addFiles, string removeFiles ) : void | ||
CommitAll ( ) : void | ||
ConformModifyListToDeletionList ( string modifiedFiles, string deletedFiles ) : string[] | ||
CreateBranch ( string branchName ) : void | ||
CreateBranch ( string branchName, bool checkoutAfterCreation ) : void | ||
DeleteBranch ( string branchName, bool mustBeMerged ) : void | ||
DoesBranchExist ( string newBranchName ) : bool | ||
Fetch ( string remoteName ) : void | ||
GC ( ) : void | ||
GetBranchList ( ) : string[] | ||
GetBranchList ( bool includeCurrent ) : string[] | ||
GetCurrentBranch ( ) : string | ||
GetDeletedFilesList ( ) : string[] | ||
GetDeletedFilesList ( bool filterUsingSelection ) : string[] | ||
GetModifiedFilesList ( ) : string[] | ||
GetModifiedFilesList ( bool filterUsingSelection ) : string[] | ||
GetRemotesList ( ) : string[] | ||
GetUnmergedFilesList ( ) : string[] | ||
GetUnmergedFilesList ( bool filterUsingSelection ) : string[] | ||
GetUntrackedFilesList ( ) : string[] | ||
GetUntrackedFilesList ( bool filterUsingSelection ) : string[] | ||
InitNewRepo ( ) : void | ||
IsRemoteLocal ( string remoteName ) : bool | ||
MergeBranch ( string branchName ) : void | ||
PostPull ( ) : void | ||
Pull ( string remoteName ) : void | ||
Pull ( string remoteName, CommandOutput outputDelegate ) : void | ||
Push ( string remoteName, CommandOutput outputDelegate ) : void | ||
ResolveConflict ( string file, bool useMine ) : void | ||
RunGitCmd ( string command ) : string | ||
RunGitCmd ( string command, CommandOutput outputDelegate ) : string | ||
RunGitCmd ( string command, bool includeGitDir ) : string | ||
RunGitCmd ( string command, bool includeGitDir, CommandOutput outputDelegate ) : string |
Method | Description | |
---|---|---|
FilterUsingSelection ( string files ) : string[] | ||
GetGitExePath ( ) : string | ||
GetRepoPath ( ) : string | ||
RemoveEmptyListEntries ( string listString ) : string[] | ||
ThreadedUpdateProcess ( object outputDelegateObj ) : void |
public static CheckoutBranch ( string branchName ) : void | ||
branchName | string | |
return | void |
public static Commit ( string commitMessage, string addFiles, string removeFiles ) : void | ||
commitMessage | string | |
addFiles | string | |
removeFiles | string | |
return | void |
public static ConformModifyListToDeletionList ( string modifiedFiles, string deletedFiles ) : string[] | ||
modifiedFiles | string | |
deletedFiles | string | |
return | string[] |
public static CreateBranch ( string branchName ) : void | ||
branchName | string | |
return | void |
public static CreateBranch ( string branchName, bool checkoutAfterCreation ) : void | ||
branchName | string | |
checkoutAfterCreation | bool | |
return | void |
public static DeleteBranch ( string branchName, bool mustBeMerged ) : void | ||
branchName | string | |
mustBeMerged | bool | |
return | void |
public static DoesBranchExist ( string newBranchName ) : bool | ||
newBranchName | string | |
return | bool |
public static Fetch ( string remoteName ) : void | ||
remoteName | string | |
return | void |
public static GetBranchList ( bool includeCurrent ) : string[] | ||
includeCurrent | bool | |
return | string[] |
public static GetDeletedFilesList ( ) : string[] | ||
return | string[] |
public static GetDeletedFilesList ( bool filterUsingSelection ) : string[] | ||
filterUsingSelection | bool | |
return | string[] |
public static GetModifiedFilesList ( ) : string[] | ||
return | string[] |
public static GetModifiedFilesList ( bool filterUsingSelection ) : string[] | ||
filterUsingSelection | bool | |
return | string[] |
public static GetUnmergedFilesList ( ) : string[] | ||
return | string[] |
public static GetUnmergedFilesList ( bool filterUsingSelection ) : string[] | ||
filterUsingSelection | bool | |
return | string[] |
public static GetUntrackedFilesList ( ) : string[] | ||
return | string[] |
public static GetUntrackedFilesList ( bool filterUsingSelection ) : string[] | ||
filterUsingSelection | bool | |
return | string[] |
public static IsRemoteLocal ( string remoteName ) : bool | ||
remoteName | string | |
return | bool |
public static MergeBranch ( string branchName ) : void | ||
branchName | string | |
return | void |
public static Pull ( string remoteName ) : void | ||
remoteName | string | |
return | void |
public static Pull ( string remoteName, CommandOutput outputDelegate ) : void | ||
remoteName | string | |
outputDelegate | CommandOutput | |
return | void |
public static Push ( string remoteName, CommandOutput outputDelegate ) : void | ||
remoteName | string | |
outputDelegate | CommandOutput | |
return | void |
public static ResolveConflict ( string file, bool useMine ) : void | ||
file | string | |
useMine | bool | |
return | void |
public static RunGitCmd ( string command ) : string | ||
command | string | |
return | string |
public static RunGitCmd ( string command, CommandOutput outputDelegate ) : string | ||
command | string | |
outputDelegate | CommandOutput | |
return | string |
public static RunGitCmd ( string command, bool includeGitDir ) : string | ||
command | string | |
includeGitDir | bool | |
return | string |
public static RunGitCmd ( string command, bool includeGitDir, CommandOutput outputDelegate ) : string | ||
command | string | |
includeGitDir | bool | |
outputDelegate | CommandOutput | |
return | string |