File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -84,8 +84,10 @@ v0.28 + 1
8484
8585### Changes or improvements
8686
87- * libgit2 can now correctly cope with URLs where the host contains a colon
88- but a port is not specified. (eg ` http://example.com:/repo.git ` ).
87+ * libgit2 now correctly handles more URLs, such as
88+ ` http://example.com:/repo.git ` (colon but no port),
89+ ` http://example.com ` (no path),
90+ and ` http://example.com:8080/ ` (path is /, nonstandard port).
8991
9092* A carefully constructed commit object with a very large number
9193 of parents may lead to potential out-of-bounds writes or
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ typedef int GIT_CALLBACK(git_stash_apply_progress_cb)(
126126typedef struct git_stash_apply_options {
127127 unsigned int version ;
128128
129- /** See `git_stash_apply_flags_t `, above. */
129+ /** See `git_stash_apply_flags `, above. */
130130 uint32_t flags ;
131131
132132 /** Options to use when writing files to the working directory. */
You can’t perform that action at this time.
0 commit comments