- 29 Aug, 2014 4 commits
-
-
If we do not have a HEAD ref in the heads, we already know there is no default branch. Return immedately.
Carlos Martín Nieto committed -
Assert what we already do, so as to notice changes.
Carlos Martín Nieto committed -
This was added to avoid the remote's default branch to be considered to the be notes one which the first network test leaves behind.
Carlos Martín Nieto committed -
Carlos Martín Nieto committed
-
- 28 Aug, 2014 3 commits
-
-
Fix ahead-behind results
Vicent Marti committed -
When we see PARENT1, it means there is a local commit and thus we are ahead. Likewise, seeing PARENT2 means that the upstream branch has a commit and we are one more behind. The logic is currently reversed. Correct it. This fixes #2501.
Carlos Martín Nieto committed -
The logic was reversed. I have checked manually each pair with git and adjusted the expectation to what git status prints.
Carlos Martín Nieto committed
-
- 27 Aug, 2014 10 commits
-
-
winhttp: Prevent swallowing of url parsing error
Vicent Marti committed -
Set timeout on remote (Add timeout for WinHttpReceiveResponse #2147)
Vicent Marti committed -
Allow to override default ssh transport_cb - in order to allow third party ssh transports
Vicent Marti committed -
nulltoken committed
-
Signed-off-by: Sven Strickroth <email@cs-ware.de>
Sven Strickroth committed -
Carlos Martín Nieto committed
-
Carlos Martín Nieto committed
-
Carlos Martín Nieto committed
-
Carlos Martín Nieto committed
-
Set timeout on remote (WinHTTP) should return error in case of failure. Connection timeout set to 1 minute. Read/Write timeout remains set to infinite #2147
Rafal Nowosielski committed
-
- 26 Aug, 2014 8 commits
-
-
Refactor git_cache to use an rwlock
Vicent Marti committed -
This significantly reduces contention when many threads are trying to read from the cache simultaneously.
Justin Spahr-Summers committed -
Fix bugs with negative ignores inside an ignored parent directory
Vicent Marti committed -
add Julia to the language bindings list
Vicent Marti committed -
pack: return the correct final offset
Vicent Marti committed -
W/o this patch it is not possible to have a third party ssh transport_cb if GIT_SSH is disabled or a third party transport_cb which has a higher priority than the default one. Signed-off-by: Sven Strickroth <email@cs-ware.de>
Sven Strickroth committed -
The callers of git_packfile_unpack() expect the obj_offset argument to be set to the beginning of the next object. We were mistakenly returning the the offset of the object's data, which causes the CRC function to try to use the wrong offset. Set obj_offset to curpos instead of elem->offset to point to the next element and bring back expected behaviour.
Carlos Martín Nieto committed -
jake bolewski committed
-
- 25 Aug, 2014 4 commits
-
-
merge base: Correctly raise an error if a non-commit object is passed.
Vicent Marti committed -
Arthur Schreiber committed
-
Allow mkdir helper to skip parent errors
Vicent Marti committed -
Check if the refspec matches before transforming
Vicent Marti committed
-
- 23 Aug, 2014 1 commit
-
-
Rafal Nowosielski committed
-
- 22 Aug, 2014 1 commit
-
-
Our mkdir helper was failing is a parent directory was not accessible even if the child directory could be created. This changes the helper to keep trying child directories even when the parent is unwritable.
Russell Belfer committed
-
- 21 Aug, 2014 1 commit
-
-
Jacques Germishuys committed
-
- 18 Aug, 2014 6 commits
-
-
Export `git_oid_tostr_s` instead of `_allocfmt`
Vicent Marti committed -
This reverts commit 0dc54e14.
Vicent Marti committed -
We don't really use this at all, and it breaks packaging in Windows.
Vicent Marti committed -
The old `allocfmt` is of no use to callers, as they are not able to free the returned buffer. Export a new API that returns a static string that doesn't need to be freed.
Vicent Marti committed -
http: make sure we can consume the data we request
Vicent Marti committed -
Removing a completed starter project.
Vicent Marti committed
-
- 17 Aug, 2014 1 commit
-
-
Jacques Germishuys committed
-
- 16 Aug, 2014 1 commit
-
-
The recv buffer (parse_buffer) and the buffer have independent sizes and offsets. We try to fill in parse_buffer as much as possible before passing it to the http parser. This is fine most of the time, but fails us when the buffer is almost full. In those situations, parse_buffer can have more data than we would be able to put into the buffer (which may be getting full if we're towards the end of a data sideband packet). To work around this, we check if the space we have left on our buffer is smaller than what could come from the network. If this happens, we make parse_buffer think that it has as much space left as our buffer, so it won't try to retrieve more data than we can deal with. As the start of the data may no longer be at the start of the buffer, we need to keep track of where it really starts (data_offset) and use that in our calculations for the real size of the data we received from the network. This fixes #2518.
Carlos Martín Nieto committed
-