Added declarations for:

bool branchExistsRemotely();
    bool branchExistsLocally();
    bool gitPullNewBranches();
This commit is contained in:
Gerhard Hoffmann 2024-04-11 16:24:33 +02:00
parent 698cf74516
commit 8b2fcb25db

View File

@ -57,6 +57,10 @@ class GitClient : public QObject {
static QString gitBlob(QString fileName);
QString gitCommitForBlob(QString blob);
bool gitIsFileTracked(QString file2name);
bool branchExistsRemotely();
bool branchExistsLocally();
bool gitPullNewBranches();
};
#endif // GIT_CLIENT_H_INCLUDED