mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-06-05 11:05:00 +00:00
15 lines
345 B
C#
15 lines
345 B
C#
namespace SourceGit.Models
|
|
{
|
|
public interface IRepository
|
|
{
|
|
bool MayHaveSubmodules();
|
|
|
|
void RefreshBranches();
|
|
void RefreshWorktrees();
|
|
void RefreshTags();
|
|
void RefreshCommits();
|
|
void RefreshSubmodules();
|
|
void RefreshWorkingCopyChanges();
|
|
void RefreshStashes();
|
|
}
|
|
}
|