mirror of
https://github.com/QRouland/UTPass.git
synced 2025-01-26 00:26:40 +00:00
27 lines
227 B
C++
27 lines
227 B
C++
|
|
||
|
|
||
|
|
||
|
#include <QDebug>
|
||
|
#include <QUrl>
|
||
|
extern "C" {
|
||
|
#include <git2.h>
|
||
|
}
|
||
|
|
||
|
#include "git.h"
|
||
|
|
||
|
|
||
|
|
||
|
Git::Git()
|
||
|
{
|
||
|
git_libgit2_init();
|
||
|
}
|
||
|
|
||
|
Git::~Git() {
|
||
|
git_libgit2_shutdown();
|
||
|
}
|
||
|
|
||
|
bool Git::clone(QString url)
|
||
|
{
|
||
|
return false;
|
||
|
}
|