summary refs log tree commit diff
path: root/home (follow)
Commit message (Expand)AuthorAge
* Use env.sh as 1sh todo listJune McEnroe2019-07-01
* Clean up 1sh prompt settingJune McEnroe2019-06-29
* Rename catsh to 1shJune McEnroe2019-06-28
* Set HISTSIZE in catshJune McEnroe2019-06-28
* Set LESS=FRXJune McEnroe2019-06-19
* Alias date=ddateJune McEnroe2019-06-16
* Clean up catsh configJune McEnroe2019-04-18
* Rename cash config to catshJune McEnroe2019-04-18
* Color python imports as StatementJune McEnroe2019-04-15
* Move /opt/pkg after /usr in PATHJune McEnroe2019-02-20
* Set man_hard_wrap in nvimJune McEnroe2019-02-20
* Color format specifiers light cyan in vimJune McEnroe2019-02-15
* Add nmap gpJune McEnroe2019-02-15
* Unify *up scripts into one up.shJune McEnroe2019-02-12
* Use italic for underline in nvim man modeJune McEnroe2019-02-10
* Set git commit.verboseJune McEnroe2019-02-10
* Add hupJune McEnroe2019-02-09
* Don't open folds when using {}June McEnroe2019-02-08
* Import autoload/man.vim from 71bb4fdJune McEnroe2019-02-07
* Set nvim Directory back to blueJune McEnroe2019-02-01
* Add def scriptJune McEnroe2019-02-01
* Add back tux to ssh configJune McEnroe2019-01-26
* Set nvim UI colors back to the 8-color paletteJune McEnroe2019-01-25
* Add !! alias in cashJune McEnroe2019-01-15
* Use \$ in cash PS1 and add # to RPS1June McEnroe2019-01-15
* Show full path in RPS1June McEnroe2019-01-13
* Set PS0 in cashJune McEnroe2019-01-13
* Change default ENV from cashrc to env.shJune McEnroe2019-01-13
* Use colours in cash promptsJune McEnroe2019-01-13
* Add cashrcJune McEnroe2019-01-11
* Remove character NETHACKOPTIONSJune McEnroe2019-01-04
* Run ls if gs failsJune McEnroe2018-12-31
* Simplify htop displayJune McEnroe2018-12-29
* Remove \h bindingJune McEnroe2018-12-02
* Switch to pkgsrc on DarwinJune McEnroe2018-11-27
* Set default .asm, .h, .sh syntax modes for vimJune McEnroe2018-11-23
* Disable number, laststatus, ruler in vimJune McEnroe2018-11-23
* Alias ls='ls -p'June McEnroe2018-11-19
* Add \l binding to insert AGPL commentJune McEnroe2018-11-14
* Add \s sort binding and simplify \h and \aJune McEnroe2018-11-11
* Set MANSECT for sections 2 and 3 before 1June McEnroe2018-10-27
* Export PWDJune McEnroe2018-09-27
* Add mdoc syntax fileJune McEnroe2018-09-10
* Remove colorcolumn at 100June McEnroe2018-09-02
* SendEnv LANGJune McEnroe2018-09-02
* Show hostname in title over SSHJune McEnroe2018-08-24
* Alias bc='bc -l'June McEnroe2018-08-23
* Set FCEDIT=$EDITORJune McEnroe2018-08-18
* Run {,s,t}up with /bin/shJune McEnroe2018-08-18
* Use whence instead of typeJune McEnroe2018-08-18
tdout for us, but when we redirect stdout to the cache it points to a regular file so Git no longer flushes the output for us. The patch is still correct, but perhaps the full explanation is interesting! Reported-by: Konstantin Ryabitsev <mricon@kernel.org> 2014-06-28ui-log: ignore unhandled argumentsJohn Keeping If you search for a bogus range string here: http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/log/ Using something like "range" and "qwerty123456", it returns an "Internal Server Error" and the following in the logs: > [Tue Jun 10 17:45:32 2014] [error] [client 172.21.1.6] fatal: > ambiguous argument 'qwerty123456': unknown revision or path not in the > working tree., referer: > http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/ > [Tue Jun 10 17:45:32 2014] [error] [client 172.21.1.6] Use '--' to > separate paths from revisions, like this:, referer: > http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/ > [Tue Jun 10 17:45:32 2014] [error] [client 172.21.1.6] 'git <command> > [<revision>...] -- [<file>...]', referer: > http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/ > [Tue Jun 10 17:45:32 2014] [error] [client 172.21.1.6] Premature end > of script headers: cgit, referer: > http://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/ The cache will kick in, so if you search for the same string again, it'll show an empty range, so you have to change the bogus strings each time. This is because we just pass the arguments straight to Git's revision parsing machinery which die()s if it cannot parse an argument, printing the above to stderr and exiting. The patch below makes it a bit friendlier by just ignoring unhandled arguments, but I can't see an easy way to report errors when we can't parse revision arguments without losing the flexibility of supporting all of the revision specifiers supported by Git. Reported-by: Konstantin Ryabitsev <mricon@kernel.org> 2014-06-28git: update for git 2.0Christian Hesse prefixcmp() and suffixcmp() have been remove, functionality is now provided by starts_with() and ends_with(). Retrurn values have been changed, so instead of just renaming we have to fix logic. Everything else looks just fine. 2014-04-17remove trailing whitespaces from source filesChristian Hesse 2014-04-12git: update to 1.9.2Christian Hesse Everything works just bumping the version in Makefile and commit hash in submodule. No code changes required. 2014-04-05Fix cgit_parse_url when a repo url is contained in another repo urlJulian Maurice For example, if I have two repos (remove-suffix is enabled): /foo /foo/bar http://cgit/foo/bar/ is interpreted as "repository 'foo', command 'bar'" instead of "repository 'foo/bar'" 2014-03-20Makefile: use more reliable git tarball mirrorJason A. Donenfeld 2014-03-20git: update to 1.9.1Christian Hesse