Commits
- Commit:
f65260821354bd87f50906082facec2d1c890d31
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: release 0.91
- Commit:
6657da59dbf1b4bef91ee6ccba6106e6e98bc23a
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: tog: add keyword.c
- Commit:
5d4f589f18546d1d1a0f443e5a831138bf7d62dc
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
visit the cvg/ subdir during 'make clean' and 'make obj'
- Commit:
66b04f8f59f931fc5e30d76b7a9032f336ec5556
- From:
- Mark Jamsek <mark@jamsek.dev>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
tog: add support for commit keywords
Allow keywords as arguments to options and operands for the blame, diff, log,
and tree commands. Also, return 1 when exiting tog with error rather than 0
so regress can discern success from failure.
ok stsp@
- Commit:
ad10f64ebeae9e8625205b8ef468ce58e03db95b
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
use a separate .cvg meta data directory for cvg(1) work trees
This prevents mixing the use of got and cvg clients in the same work tree.
Avoids confusion going forward while cvg differentiates itself further.
tog(1) and gotadmin(1) remain compatible with both work tree formats.
These tools only read work trees to locate the corresponding repository.
- Commit:
affd85fdd69bb67d27045196a798015ad4479e0d
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
remove stray .Pp that I overlooked in my previous commit
- Commit:
9f625d2da2debfec13bfb4db5c53892f6b405755
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
apply brevity tweaks for newly added keyword docs
- Commit:
3795e2b655387a472683ffdeb63c6ff53b9b1e14
- From:
- Mark Jamsek <mark@jamsek.dev>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
got: enable more commands to accept commit keywords
More work adding commit keyword support to the blame, cat, ref, tag, and tree
commands. With this, all Got commands that take a <commit> option argument
or operand now support keywords. Regress flub saved by op!
fixes + ok op@
- Commit:
a290e4b40845ee5d251cdf5e4d9b31693f37ea49
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
reword commit keyword argument descriptions in got.1 for brevity
- Commit:
482b0b83833675d8c750a996c3a9db1fb99e1e8d
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
reorder some paragraphs in got.1 to make default behaviour easier to spot
- Commit:
fb8851205d3a6b7f0c457b2091c3b335d0f7e4e3
- From:
- Mark Jamsek <mark@jamsek.dev>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
expand support for commit keywords to more got commands
Add the ability to use keywords in the backout, branch, checkout, cherrypick,
and patch commands. Includes some basic regress tests for the new commands,
and also some more contrived test cases for 'got log -c[:]keyword[:(+|-)[N]]'.
ok stsp
- Commit:
481d9ea65dc2884473253a84cee23e8a562ac3b9
- From:
- Thomas Adam <thomas@xteddy.org>
- Date:
portable: add keyword.c
- Commit:
1b9900744f5cac2de071add4a1b678cf36713b63
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
avoid HEAD when talking about a work tree; HEAD is specific to the repository
ok jamsek
- Commit:
953c67e2c21eafa2c682fe83f77cfabd955358f7
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
move discussion of keyword arguments to -c into separate paragraphs
- Commit:
9139e0049a78ea0a4d285e4e5e4874893c0b9a09
- From:
- Mark Jamsek <mark@jamsek.dev>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
implement support for keywords as got <commit> arguments
This begins enabling the use of keywords in got wherever commit ids or
references are used, with more work intended to expand support across all
such instances (e.g., branch, checkout, etc.), and add more keywords.
The keywords ":base" and ":head" can be passed to 'got {diff,log,update} -c'
commands as a substitute for the corresponding commit hash id. Keywords and
references can also be modified by appending a ':+' or ':-' and an optional
integer N to specify by first parent traversal the Nth generation descendant
or antecedent, respectively. If N is omitted, a '1' is implicitly appended.
tweaks + ok op and stsp
- Commit:
5a44570065e95758417914d5380e371907987be5
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
cvg: restore accidentally deleted "tag" and "add" man page bits
ok jrick
- Commit:
bccae03fdbe2f0902e2447972ef9f63ffef57c3c
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
abort histedit if the user quits the editor without saving the script
Also document that the commit/import/tag operations are aborted when
the user fails to save the log message from the invoked editor.
ok jamsek stsp
- Commit:
5541355f708ebb0d883dc03a3a2a29563a6df2c9
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
always report stat() error with path
ok stsp
- Commit:
c68571e2c407e42a8da06182caf11ae7c49b509e
- From:
- Josiah Frentsos <jfrent@tilde.team>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
tog: fix double-free in blame view error path
open_diff_view() has already called view_close() on error.
Patch by Josiah Frentsos.
- Commit:
b40793acff6223f04e5b673fa5c6d488f7b617ea
- From:
- Christian Weisgerber <naddy@mips.inka.de>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
always report stat() error with path
ok stsp
- Commit:
59530ea7aaf19f809c3dbcec5e2d9e039a54349f
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
prevent useless EEXIST errors filling up the global custom error array
While checking out files, do not attempt to create every directory
that exists in the repository tree without paying consideration to
their existence on disk.
Instead, let functions which add files worry about creating any missing
parent directories. This shakes out two other bugs in broken symlink
installation code which ended up passing an absolute path to
add_dir_on_disk() and forgot to report progress in an unreachable code
path that is now getting used.
Problem reported by + ok naddy@
- Commit:
f7abcac262b10952aa804b9a77dde3c728250227
- From:
- Stefan Sperling <stsp@stsp.name>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
fix typo in a comment
- Commit:
609a74001549bfeeaa6e87286d7ca76722d3dd12
- From:
- Josh Rickmar <jrick@zettaport.com>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
plug got_object_id leak in cmd_log()
backport of b161263abf48e69eb1f05028b633808dfe337357 to cvg
- Commit:
ff8a85aa6ea1444ad8a60d93ebc05d68c614d9d5
- From:
- Mark Jamsek <mark@jamsek.dev>
- Via:
- Thomas Adam <thomas@xteddy.org>
- Date:
plug got_object_id leak in cmd_log()
ok stsp@
- Commit:
faa3086db292eb93914697ff2f78785fd8793af1
- From:
- Omar Polo <op@omarpolo.com>
- Date:
fmt