44                                  bool aRemoveGitDir, wxString* aErrors )
 
 
   51    wxString 
result = wxT( 
"no hash" );
 
   56        git_reference* head = 
nullptr;
 
   58    if( git_repository_head( &head, repo ) == 0 )
 
   60            const git_oid* oid = git_reference_target( head );
 
   64                char buf[GIT_OID_HEXSZ + 1];
 
   65                size_t len = aShort ? 9 : GIT_OID_HEXSZ + 1; 
 
   66                git_oid_tostr( buf, len, oid );
 
   67                result = wxString::FromUTF8( buf );
 
   70            git_reference_free( head );
 
   73        git_repository_free( repo );
 
 
virtual int CreateBranch(git_repository *aRepo, const wxString &aBranchName)=0
 
virtual bool RemoveVCS(git_repository *&aRepo, const wxString &aProjectPath, bool aRemoveGitDir, wxString *aErrors)=0
 
virtual git_repository * GetRepositoryForFile(const char *aFilename)=0
 
static wxString GetCurrentHash(const wxString &aProjectFile, bool aShort)
Return the current HEAD commit hash for the repository containing aProjectFile.
 
static git_repository * GetRepositoryForFile(const char *aFilename)
Discover and open the repository that contains the given file.
 
static bool RemoveVCS(git_repository *&aRepo, const wxString &aProjectPath=wxEmptyString, bool aRemoveGitDir=false, wxString *aErrors=nullptr)
Remove version control from a directory by freeing the repository and optionally removing the ....
 
static int CreateBranch(git_repository *aRepo, const wxString &aBranchName)
Create a new branch based on HEAD.
 
GIT_BACKEND * GetGitBackend()
 
#define TO_UTF8(wxstring)
Convert a wxString to a UTF8 encoded C string for all wxWidgets build modes.
 
wxString result
Test unit parsing edge cases and error handling.