Commits


hide unexpected diff output from xfail test


add xfail test for 'got status' ignore patterns with a trailing slash Patch by Lucas


remove trailing whitespace; patch by Josiah Frentsos


drop (needless?) sleep(1) in status.sh ok stsp


redirect jot(1) output instead of looping over it; ok tb@


use test(1) -eq and -ne to compare integers, and reduce quoting This brings the rest of the regression test scripts in line with patch.sh.


fix 'got status' with an obstructed file given as argument; found by Omar


do not skip ignored directories in 'got status' if they contain tracked files Fixes regression introduced by commit 41f061b2f459318f3738f59d7676efccc4beb344 where tracked files inside an ignored directory were reported as missing.


sort and de-duplicate work tree path command line arguments This is important in cases like 'got diff file.txt file.txt' which should only show the diff for file.txt once. suggested by kn@


shell code fixes Escape sequences are not handled by every echo(1), e.g. not on FreeBSD. '?' is a glob character and must be quoted. '!' is not a shell meta character. ok tracey stsp


verify that 'got status -s' and 'got status -S' cannot be used together


make 'got update' display the worktree's branch name upon success ok tracey


add tests for checkout -q, update -q, and status -S. ok stsp


new -I option for 'got status' to show files which match an ignore pattern


use POSIX [s1 = s2] syntax instead of [s1 == s2]; patch by Ryo ONODERA