Commits
- 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
- Commit:
566e0ee7be3658e35381b86aee2469c0838c6985
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
regress: make test operands POSIX compliant
Since the interpreter for the regress shell scripts are using /bin/sh
this will usually imply some level of POSIX compliance (that isn't
bash-specific, for instance).
Some systems use dash as their sh shell and as such is stricter POSIX
compliance. To help -portable, make the shell test checks use a single
'=' for equality, rather than '=='.
- Commit:
1a37462fddfe367168b78e6043f162cf2ae2bf4f
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
sync dist file list
- Commit:
07a065feeb70f520295e3e449c377060733dd980
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
switch tog ref view's sort order command key to "o" instead of "s"
The letter "o" does not overlap with existing options of 'got ref'
and is also used by mutt(1) for this purpose.
- Commit:
f76670f06a0f4f426ea232a2dd02899fe3698cf2
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add got branch -t option to sort listed branches by modification time
- Commit:
428649877ce32ed472c8f2981ed805ec682732fd
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fall back to comparison by name when refs have the same timestamp
This fixes an issue where some references were missing from lists of
references sorted by timestamp.
- Commit:
0f104432aecf1cda4672c5ff4e4d228f5aae1bdb
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
add got ref -t option to sort listed references by modification time
- Commit:
50617b77af7b0af9788a0e4b09697e06067cb8f4
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
make tog use got_reflist_sort() instead of reloading refs while sorting them
- Commit:
2d4975924ce5391b01ebd64d11499b485e19aace
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
implement got_reflist_sort() which sorts a ref list in-place
- Commit:
0309152af410dec50680c7a54ae55ba8ebd7fcae
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
fix uninitialized error from got_ref_cmp_by_commit_timestamp_descending()
- Commit:
7f66531d28466880142708210643464d65b9b63b
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
allow sorting references by timestamp in tog
- Commit:
0e039681388d7ec1f832edcbb108ac28db95ae1e
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
preverse binary files during updates and merges
- Commit:
7d69d862a07866680ea64fcf8c30500f1f510243
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
let gotadmin find the repository automatically if invoked in a work tree
Move a small amount of code from worktree.c to a new file worktree_open.c,
which contains everything required to open and close a work tree and inspect
some of its basic parameters. This can be used by gotadmin.
ok tracey
- Commit:
7cc76137bf43f435f12aa25c04316ca69c3b21cd
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
gotweb does not actually use anything from worktree.c or fileindex.c
- Commit:
4683a10b65c55ef32afba4f4363b9da42c396b6e
- From:
- Klemens Nanni <kn@openbsd.org>
- Date:
Fix mandoc HTML rendering for command aliases
Replace hand-rolled parentheses with the proper mdoc(7) macro,
otherwise the closing ")" ends up inside the command description.
Reported by Josh Rickmar, thanks!
- Commit:
2af6173593a21a43c9ee858646ac68d812039e12
- From:
- Stefan Sperling <stsp@stsp.name>
- Date:
document new 'got rebase' behaviour when commits do not need to be rebased
- Commit:
3d42b2660156bfd71df40d11a996d7bf233ed2a4
- From:
- Josh Rickmar <jrick@zettaport.com>
- Date:
switch branches during noop rebases
Always update to the specified branch even if the branch is already
rebased (no commits needed to be rebased, and the branch does not need
a fast forward). With the old behavior of erroring and staying on the
current branch, I sometimes found myself ignoring the error message,
treating it as information and assuming the branch update, and later
on committing on top of origin/main instead of the main branch.
feedback and ok stsp