From 8b2fcb25dbbdd644f7b7c597ab74faf2a50e4ad9 Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Thu, 11 Apr 2024 16:24:33 +0200 Subject: [PATCH] Added declarations for: bool branchExistsRemotely(); bool branchExistsLocally(); bool gitPullNewBranches(); --- UpdatePTUDevCtrl/git/git_client.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/UpdatePTUDevCtrl/git/git_client.h b/UpdatePTUDevCtrl/git/git_client.h index f6ce89e..a8acffc 100644 --- a/UpdatePTUDevCtrl/git/git_client.h +++ b/UpdatePTUDevCtrl/git/git_client.h @@ -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