summary refs log tree commit diff
Commit message (Collapse)AuthorAge
* Update to iTerm 2.9 betaJune McEnroe2016-02-03
|
* Spawn non-login shells in iTermJune McEnroe2016-01-31
|
* Remove linux gvim aliasJune McEnroe2016-01-28
|
* Rewrite zshrcJune McEnroe2016-01-28
|
* Strip out useless commentsJune McEnroe2016-01-28
|
* Trim tmux configurationJune McEnroe2016-01-28
|
* Remove psql format wrappedJune McEnroe2016-01-28
|
* Wow, that is so annoying, gitJune McEnroe2016-01-25
|
* Clean up .gitconfigJune McEnroe2016-01-25
|
* Remove gitignoreJune McEnroe2016-01-15
|
* Eliminate escape key delay in zshJune McEnroe2016-01-15
|
* Move pretty git log format to .gitconfigJune McEnroe2016-01-15
|
* Remove unused git aliasesJune McEnroe2016-01-14
|
* Hash SSH known hostsJune McEnroe2016-01-06
|
* Ignore directory .swp filesJune McEnroe2015-12-30
|
* Color prompt yellow in vi normal modeJune McEnroe2015-12-16
|
* Remove colorcolumn at 120June McEnroe2015-11-23
|
* Always git rebase --autosquashJune McEnroe2015-11-23
|
* Add inverted shift to KarabinerJune McEnroe2015-11-18
|
* Clean up git configsJune McEnroe2015-11-06
|
* Add prune scriptJune McEnroe2015-11-06
|
* Update vendored Gruvbox colorschemeJune McEnroe2015-11-03
|
* Redefine _newline_precmd in _newline_precmdJune McEnroe2015-11-02
|
* Print newline before every prompt after firstJune McEnroe2015-11-02
|
* Remove first prompt placementJune McEnroe2015-11-02
|
* Newline before prompt and start at bottom of terminalJune McEnroe2015-11-02
|
* Add chruby to zshrcJune McEnroe2015-10-27
|
* Add SSH configJune McEnroe2015-10-22
|
* Spawn login shells in iTermJune McEnroe2015-10-22
|
* Zoom iTerm only verticallyJune McEnroe2015-07-12
|
* Update iTerm2 configurationJune McEnroe2015-07-11
|
* Add mkdir -p to import scriptJune McEnroe2015-07-05
|
* Add license to readmeJune McEnroe2015-07-04
|
* Add pathogen to vimJune McEnroe2015-07-04
|
* Add send-prefix bindingJune McEnroe2015-05-28
|
* Bash is usually in /binJune McEnroe2015-05-28
|
* Swap windows instead of moving themJune McEnroe2015-05-24
|
* Replace effuse with simple shell scriptsJune McEnroe2015-05-24
|
* Add tmux shortcut functionsJune McEnroe2015-05-23
|
* More tmux configurationJune McEnroe2015-05-23
|
* Add tmux configurationJune McEnroe2015-05-22
|
* Set scrolloff=1June McEnroe2015-05-13
|
* Truncate RPROMPT with negative lengthJune McEnroe2015-02-18
|
* Fix timeoutlen so leader still worksJune McEnroe2015-02-16
|
* Prevent esc delay in terminal vimJune McEnroe2015-02-15
|
* Fix git prompt for branches with slashesJune McEnroe2015-02-15
|
* Clean upJune McEnroe2015-02-14
|
* Switch back to gruvbox iTerm themeJune McEnroe2015-02-14
|
* Switch back to gruvbox vim themeJune McEnroe2015-02-14
|
* Prevent red first promptJune McEnroe2015-02-14
|
ss='logsubject'>ui-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