- 10 Dec, 2014 1 commit
-
-
We currently have gitno for talking over TCP, but this needs to know about both plaintext and OpenSSL connections and the code has gotten somewhat messy with ifdefs determining which version of the function should be called. In order to clean this up and abstract away the details of sending over the different types of streams, we can instead use an interface and stack stream implementations. We may not be able to use the stackability with all streams, but we are definitely be able to use the abstraction which is currently spread between different bits of gitno.
Carlos Martín Nieto committed
-
- 21 Nov, 2014 2 commits
-
-
odb: `git_odb_object` contents are never NULL
Vicent Marti committed -
This is a contract that we made in the library and that we need to uphold. The contents of a blob can never be NULL because several parts of the library (including the filter and attributes code) expect `git_blob_rawcontent` to always return a valid pointer.
Vicent Marti committed
-
- 20 Nov, 2014 4 commits
-
-
Update message for error during push
Vicent Marti committed -
Clarify the git_remote_ls() documentation
Vicent Marti committed -
fetch: clear the connection data on close
Vicent Marti committed -
travis: disable the cert callback on OSX
Edward Thomson committed
-
- 19 Nov, 2014 4 commits
-
-
The sshd on OSX has stopped responding to the setting which this test assumes is there, so let's disable it until we can figure out what's happening.
Carlos Martín Nieto committed -
When we fetch twice with the same remote object, we did not properly clear the connection flags, so we would leak state from the last connection. This can cause the second fetch with the same remote object to fail if using a HTTP URL where the server redirects to HTTPS, as the second fetch would see `use_ssl` set and think the initial connection wanted to downgrade the connection.
Carlos Martín Nieto committed -
On disconnect we simply ask the transport to close the connection, we do not free it.
Carlos Martín Nieto committed -
Make it clear that this is not the ls-remote command but a way to access the data we have and how long it's kept around.
Carlos Martín Nieto committed
-
- 18 Nov, 2014 4 commits
-
-
Carlos Martín Nieto committed
-
Fix missing object in tests/resources/crlf by changing the tail commit
Edward Thomson committed -
Provide a convenience function `git_remote_push()`
Edward Thomson committed -
Fixed active_refspecs field not initialized on new git_remote objects
Edward Thomson committed
-
- 17 Nov, 2014 7 commits
-
-
push: use the common refspec parser
Edward Thomson committed -
Fixed a couple Clang warnings
Edward Thomson committed -
When attempting to update a reference on a remote during push, and the reference on the remote refers to a commit that does not exist locally, then we should report a more clear error message.
Jameson Miller committed -
When creating a new remote, contrary to loading one from disk, active_refspecs was not populated. This means that if using the new remote to push, git_push_update_tips() will be a no-op since it checks the refspecs passed during the push against the base ones i.e. active_refspecs. And therefore the local refs won't be created or updated after the push operation.
Pierre-Olivier Latour committed -
Carlos Martín Nieto committed
-
Carlos Martín Nieto committed
-
Ungureanu Marius committed
-
- 15 Nov, 2014 3 commits
-
-
Fixed git2.h not including threads.h anymore
Carlos Martín Nieto committed -
Fix typo in THREADING.md
Carlos Martín Nieto committed -
Ben Chatelain committed
-
- 14 Nov, 2014 1 commit
-
-
Pierre-Olivier Latour committed
-
- 09 Nov, 2014 3 commits
-
-
Pierre-Olivier Latour committed
-
There is one well-known and well-tested parser which we should use, instead of implementing parsing a second time. The common parser is also augmented to copy the LHS into the RHS if the latter is empty. The expressions test had to change a bit, as we now catch a bad RHS of a refspec locally.
Carlos Martín Nieto committed -
Add test information to contributing guidelines
Carlos Martín Nieto committed
-
- 08 Nov, 2014 11 commits
-
-
Rename git_threads_ to git_libgit2_
Edward Thomson committed -
If the user does not pass any refspecs to push, try to use those configured via the configuration or via add_push().
Carlos Martín Nieto committed -
We have the step-by-step method in the initialization function as we want to remove references based on the list of references which are already there, and we can use the convenience function for testing the main push.
Carlos Martín Nieto committed -
This function, similar in style to git_remote_fetch(), performs all the steps required for a push, with a similar interface. The remote callbacks struct has learnt about the push callbacks, letting us set the callbacks a single time instead of setting some in the remote and some in the push operation.
Carlos Martín Nieto committed -
This describes their purpose better, as we now initialize ssl and some other global stuff in there. Calling the init function is not something which has been optional for a while now.
Carlos Martín Nieto committed -
Fixed GIT_REMOTE_DOWNLOAD_TAGS_ALL to behave like git 1.9.0+
Edward Thomson committed -
Pierre-Olivier Latour committed
-
Refactor fetchhead
Edward Thomson committed -
remote: rename _load() to _lookup()
Edward Thomson committed -
odb: hardcode the empty blob and tree
Edward Thomson committed -
git_status_file now takes an exact path.
Edward Thomson committed
-