mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-22 04:34:59 +00:00
16 lines
385 B
C#
16 lines
385 B
C#
namespace SourceGit.Models
|
|
{
|
|
public interface IRepository
|
|
{
|
|
string FullPath { get; set; }
|
|
string GitDir { get; set; }
|
|
|
|
void RefreshBranches();
|
|
void RefreshWorktrees();
|
|
void RefreshTags();
|
|
void RefreshCommits();
|
|
void RefreshSubmodules();
|
|
void RefreshWorkingCopyChanges();
|
|
void RefreshStashes();
|
|
}
|
|
}
|