#ifndef GITREPOSITORY_H #define GITREPOSITORY_H #include #include #include #include #include "gitutils.h" class GitManager; class GitRepository : public QObject { Q_OBJECT public: explicit GitRepository(const QString& folder, QObject *parent = nullptr); ~GitRepository(); const QString &folder() const; void createRepository(); bool hasRepository(QString& currentBranch); bool isFileInRepository(const QFileInfo& fileInfo) { return isFileInRepository(fileInfo.absoluteFilePath()); } bool isFileInRepository(const QString& filePath) { return mFilesInRepositories.contains(filePath); } bool isFileStaged(const QFileInfo& fileInfo) { return isFileStaged(fileInfo.absoluteFilePath()); } bool isFileStaged(const QString& filePath) { return mStagedFiles.contains(filePath); } bool isFileChanged(const QFileInfo& fileInfo) { return isFileChanged(fileInfo.absoluteFilePath()); } bool isFileChanged(const QString& filePath) { return mChangedFiles.contains(filePath); } void add(const QString& path); void remove(const QString& path); void rename(const QString& oldName, const QString& newName); void restore(const QString& path); QSet listFiles(bool refresh); void clone(const QString& url); void commit(const QString& message, bool autoStage=true); void revert(); void reset(const QString& commit, GitResetStrategy strategy); void setFolder(const QString &newFolder); void update(); const QString &realFolder() const; signals: private: QString mRealFolder; QString mFolder; bool mInRepository; QString mBranch; GitManager* mManager; QSet mFilesInRepositories; QSet mChangedFiles; QSet mStagedFiles; private: void convertFilesListToSet(const QStringList& filesList,QSet& set); }; #endif // GITREPOSITORY_H