- 21 Apr, 2015 7 commits
-
-
Aki Koskinen authored
-
Aki Koskinen authored
-
Matti Virolainen authored
-
Matti Virolainen authored
-
Matti Virolainen authored
Removed because the test doesn't actually test anything.
-
Matti Virolainen authored
On Windows, the path names that come out of libgit2 are all encoded as UTF-8, and the path names given as input are also expected to be encoded as UTF-8. This is due to the POSIX emulating functions in libgit2 using UTF-8 for everything. However, since QFile's encodeName/decodeName convert between UTF-8 and local encoding, which is not UTF-8, I've used QString's toUtf8/fromUtf8 methods instead. In Linux and OS X the POSIX functions most probably use the system locale so it is probably best to use QFile's methods in systems other than Windows.
-
Aki Koskinen authored
-
- 05 Mar, 2015 4 commits
-
-
Leonardo Giordani authored
-
Leonardo Giordani authored
-
Leonardo Giordani authored
-
Leonardo Giordani authored
-
- 26 Feb, 2015 5 commits
-
-
Aki Koskinen authored
The "signals" macro is defined as "protected" in Qt4 which makes it not OK to emit signals of a class from outside the class (as was done in the now removed RepositoryCloneRemoteListener). But the Repository Private class has access to it's owner class and can emit its signals too. So the Private class can act as the RemoteListener too (and now there's no need to create a temporary object for the duration of the clone either).
-
Aki Koskinen authored
-
Aki Koskinen authored
-
Aki Koskinen authored
-
Aki Koskinen authored
-
- 25 Feb, 2015 2 commits
-
-
Aki Koskinen authored
This is version 0.22.1 of libgit2.
-
Aki Koskinen authored
The helper wraps the libgit2 git_strarray type and handles its memory. It's a private class since users should only deal with QStringLists and other C++ level string containers.
-
- 24 Feb, 2015 1 commit
-
-
Aki Koskinen authored
-
- 27 Jan, 2015 5 commits
-
-
Aki Koskinen authored
Setting and using the git_remote callbacks is now handled in a utility which the Remote class uses. This enables others to use the same functionality too.
-
Aki Koskinen authored
-
Aki Koskinen authored
The goal here was to get Remote not be the only class that can use the Credentials (Remote was a friend class for Credentials). Now any class in the library can use the Credentials throgh the CredentialsPrivate interface.
-
Aki Koskinen authored
Sources are collected recursively. Public headers start with "qgit" (and libqgit2_config.h is also included). Other headers are private.
-
Aki Koskinen authored
Updated Qt didn't provide this automatically anymore.
-
- 14 Dec, 2014 7 commits
-
-
Aki Koskinen authored
This is a non-released (i.e. non-tagged) version of libgit2 but it contains a few important fixes on top of the most recent libgit2 0.21.x release.
-
Aki Koskinen authored
Separated private headers and sources from public ones. Only install the public headers.
-
Aki Koskinen authored
-
Aki Koskinen authored
Start from 0.
-
Aki Koskinen authored
The version tries to follow that of libgit2 somewhat. Let's see if it works out.
-
Aki Koskinen authored
Removed CMake related installations: this project doesn't have anything related to CMake to install. Removed (almost) empty CMakeLists.txt in src directory: it wasn't used for anything.
-
Aki Koskinen authored
-
- 25 Nov, 2014 2 commits
-
-
Aki Koskinen authored
-
Aki Koskinen authored
There was very little difference between these classes and it was a bit cumbersome to use. Better to have just one Signature class.
-
- 24 Nov, 2014 2 commits
-
-
Aki Koskinen authored
-
Dan Leinir Turthra Jensen authored
-
- 14 Nov, 2014 1 commit
-
-
Aki Koskinen authored
-
- 28 Aug, 2014 1 commit
-
-
Aki Koskinen authored
-
- 11 Aug, 2014 1 commit
-
-
Aki Koskinen authored
A simple wrapper for git_merge_base() in libgit2. This method handles Commit objects while git_merge_base handles oids.
-
- 08 Aug, 2014 1 commit
-
-
Aki Koskinen authored
Now they are probably more in the order of frequency that things are amended in a commit.
-
- 05 Aug, 2014 1 commit
-
-
Aki Koskinen authored
If the behaviour of git_graph_ahead_behind is supposed to mimic the behaviour of core git's git-branch then the ahead and behind arguments are in the opposite order.
-