From: Jonas Fonseca Date: Thu, 7 Feb 2008 19:00:38 +0000 (+0100) Subject: Make command line parsing more compatible with gitk X-Git-Tag: tig-0.10~1 X-Git-Url: https://git.distorted.org.uk/~mdw/tig/commitdiff_plain/77452abca082e3d7d6ec4f079928583aa1ad6f50?ds=sidebyside;hp=77452abca082e3d7d6ec4f079928583aa1ad6f50 Make command line parsing more compatible with gitk Many of the command line arguments are relics from the beginning of the project and served as a method of configuring tig before support for the configuration file was introduced. Since then they have become less useful and make tig less compatible with gitk and other git repo viewers. This commit tries to fix this by deprecating all command line arguments except the very tig specific version and help arguments. The option to enter the status view (-S) is moved to a new "status" subcommand. Tig will warn about the deprecation and advise -S users to use the new subcommand. The handling of "--" is kept as it is for compatibility, but will be removed in a future version. Finally, the man page and manual was updated to reflect the new options and subcommands. So enjoy the new less cludgy `tig --all' ... I will! :) ---