C# Class GitScc.Blinkbox.UI.BBPendingChanges

Interaction logic for BBPendingChanges.xaml
Datei anzeigen Open project: blinkbox/Git-Source-Control-Provider

Public Methods

Method Description
AmendCommit ( ) : void

Amends the previous commit.

BBPendingChanges ( ) : System

Initializes a new instance of the BBPendingChanges class.

Commit ( ) : void

Commits the working directory.

EndReview ( ) : void

Ends the review.

GetTracker ( ) : GitFileStatusTracker

Gets the tracker.

OpenFile ( string fileName ) : void

Opens the file.

RefreshPendingChanges ( GitFileStatusTracker currentTracker ) : void

Refreshes the pending changes.

Review ( List changedFiles, string branchName = null ) : void

Reviews the specified changed files.

UpdateTfsStatus ( AheadBehind aheadBehind ) : void

Updates the TFS status.

Method Details

AmendCommit() public method

Amends the previous commit.
public AmendCommit ( ) : void
return void

BBPendingChanges() public method

Initializes a new instance of the BBPendingChanges class.
public BBPendingChanges ( ) : System
return System

Commit() public method

Commits the working directory.
public Commit ( ) : void
return void

EndReview() public method

Ends the review.
public EndReview ( ) : void
return void

GetTracker() public method

Gets the tracker.
public GetTracker ( ) : GitFileStatusTracker
return GitFileStatusTracker

OpenFile() public method

Opens the file.
public OpenFile ( string fileName ) : void
fileName string Name of the file.
return void

RefreshPendingChanges() public method

Refreshes the pending changes.
public RefreshPendingChanges ( GitFileStatusTracker currentTracker ) : void
currentTracker GitFileStatusTracker The tracker.
return void

Review() public method

Reviews the specified changed files.
public Review ( List changedFiles, string branchName = null ) : void
changedFiles List The changed files.
branchName string Name of the branch.
return void

UpdateTfsStatus() public method

Updates the TFS status.
public UpdateTfsStatus ( AheadBehind aheadBehind ) : void
aheadBehind AheadBehind The ahead behind.
return void