Commits
- Commit:
a075bd5b8b7057a0133a20327fd1c41c9f5bc761
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
sync dist file list
- Commit:
211cfef0b26adf6eade801e8beae44526d31d1ca
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
use time-based rate-limiting for gotadmin progress output
Suggested by naddy some time ago.
ok tracey
- Commit:
db6960214d9d6517c59f10744fd5a8e62b2ba46a
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
avoid the creation of new temporary files whenever a packed object is read
This speeds up the creation of pack files by about 30%.
- Commit:
404bde06df84f6c5521c237cd1f57373e69fe5b7
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix bogus "object not found" errors when object ID begins with 00
ok thomas_adam
- Commit:
a8a244dd9f028cb4a3a7f05a51ec1bdcb96f3195
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
simpler fix equivalent to the previous commit
- Commit:
5988bab17145d43dfee07a7a1b779ed17c719420
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
make test_cherrypick_root_commit pass with GOT_TEST_PACK=1
- Commit:
c861864b0f994d1b88835777932ecf8fdd78bd91
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
'got stage' tests rely on unreferenced loose objects; disable GOT_TEST_PACK=1
- Commit:
6fa5c67c875cf510a1e15f6c6ceda66cbbc343ed
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
remove loose objects if running tests with GOT_TEST_PACK
- Commit:
0a26275fe182db5175d613f1525905f45d37a4bf
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
use 'gotadmin pack' instead of 'git repack' if testing with GOT_TEST_PACK
- Commit:
c0df59665de91324eeab1808c6c4e41343f21789
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
wrap overlong lines
- Commit:
e7ae0bafeffce6697bc3b67fda753e5bac995cb6
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add O_CLOEXEC (close-on-exec) to openat(2) calls
suggested by millert
ok thomas_adam
- Commit:
8bd0cdad05519cbb08d8d11223bdde0472678150
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add O_CLOEXEC (close-on-exec) flag to open(2) calls
suggested by millert
ok thomas_adam
- Commit:
00fe21f262ab567bb792120514b49b37236c5422
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add "e" (close-on-exec) flag to fopen(3) calls
suggested by millert
ok thomas_adam
- Commit:
ed7cc4a82151aea060ad46169c957da2f37a8948
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
remove outdated comment
- Commit:
67b5eae12158038ee5cb00b808702891527cd70e
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Date:
tog: clear search highlighting when reloading view
Clear the search highlighting when replacing the content of a diff
view ('<', '>', '[', ']', 'a', 'w') or a blame view ('b', 'p', 'B').
Previously the position would remain highlighted even if the text
there had changed.
ok stsp@
or a blame view
- Commit:
197088a4e27004293735c7fc011bb92e1bf8fe75
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
whitespace
- Commit:
8a4f8535de4903dd333ad924bd7ff874afa741fa
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix NULL dereference in 'got clone' if server sends an empty pack file
- Commit:
46ea77db89a0945a013f032c6c6a94779126412f
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
sort paths in got log -Pp and tog's diff view the same way as in the diff
reported by and fix confirmed by naddy
- Commit:
487cd7d2bc0f29c4fb6800c8c815be552ad06ea6
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
make tog searches start from the current position in all views
ok naddy@
- Commit:
4a55b231883da25896fe302c04b11284bad0e125
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
ignore the return value of closefrom(2); patch by Anna a.k.a. CyberTailor
millert@ suggests that this check is not needed, and that ideally we
should be using close-on-exec instead. I will look into this, but in the
meantime this change will help -portable: https://bugs.gentoo.org/828003
- Commit:
5a5ede53c0cd62e19882a7090ef08f4c817c21e9
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
let new 'tog log' searches start out from the currently selected commit
ok naddy tracey
- Commit:
f6f4c787ef79f17c0e68c2d4b6a2d0e34af86739
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
sync files from diff.git f1dbec24f9a9553e22659f6c592c91e96221f6b9
- Commit:
88e107c9925eac5bff529cba32b6608aeccb8060
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
bump version number
- Commit:
9fe19ceb30ec231858b4c14c75da1c16aa8bc88b
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
CHANGES for 0.64
- Commit:
10b394ac1c027dbd5663bfa1269707d1f8930f3e
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
regress: make merge.sh more POSIXy
Don't use '==' for equality matching in sh, as this won't work across
all shells.
ok @naddy