18 void UpdateGitPeriodically();
22 bool OpenRepository();
23 void CloseRepository();
25 GitRepoStatus GetGitRepoStatus()
const;
26 const std::string& GetBranchName()
const;
27 uint32_t GetBehindCount()
const;
28 uint32_t GetAheadCount()
const;
29 uint32_t GetChangesCount()
const;
32 void UpdateBranchName();
34 struct git_repository* repo =
nullptr;
36 GitRepoStatus repoStatus = GitRepoStatus::NeedCheck;
37 std::string currentBranchName;
38 uint32_t behindCount = 0;
39 uint32_t aheadCount = 0;
40 uint32_t changesCount = 0;