We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
stack -h
1 parent 01b0b13 commit d596048Copy full SHA for d596048
ChangeLog.md
@@ -63,6 +63,7 @@ Other enhancements:
63
Stack is available in YAML configuration files.
64
* Add the `ls globals` command to list all global packages for the version of
65
GHC specified by the snapshot.
66
+* Add `stack -h` (equivalent to `stack --help`).
67
68
Bug fixes:
69
doc/GUIDE.md
@@ -31,8 +31,8 @@ package sets called __snapshots__.
31
32
Stack has also been designed from the ground up to be user friendly, with an
33
intuitive, discoverable command line interface. For many users, simply
34
-downloading Stack and reading `stack --help` will be enough to get up and
35
-running. This guide provides a more gradual tour for users who prefer that
+downloading Stack and reading `stack --help` (or `-h`) will be enough to get up
+and running. This guide provides a more gradual tour for users who prefer that
36
learning style.
37
38
To build your project, Stack uses a project-level configuration file, named
@@ -830,7 +830,7 @@ understand why rebuilding may occur at different points.
830
831
## The build synonyms
832
833
-Let's look at a subset of the `stack --help` output:
+Let's look at a subset of the `stack --help` (or `-h`) output:
834
835
~~~text
836
build Build the package(s) in this directory/configuration
doc/global_flags.md
@@ -355,7 +355,7 @@ Default: `https://raw.githubusercontent.com/commercialhaskell/stackage-snapshots
355
The `--snapshot-location-base <url>` command option specifies the base location
356
of snapshots.
357
358
-## `--help` command flag
+## `--help` or `-h` command flags
359
360
-If Stack is passed the `--help` command flag, it will output help for the
361
-command.
+If Stack is passed the `--help` (or `-h`) command flag, it will output help for
+the command.
doc/other_resources.md
@@ -4,10 +4,10 @@
4
5
There are lots of resources available for learning more about Stack:
6
7
-* `stack` or `stack --help` — lists Stack's commands, and flags and options
8
- common to those commands
9
-* `stack <command> --help` — provides help on the particular Stack command,
10
- including flags and options specific to the command
+* `stack`, `stack --help` (or `-h`) — lists Stack's commands, and flags and
+ options common to those commands
+* `stack <command> --help` (or `-h`) — provides help on the particular Stack
+ command, including flags and options specific to the command
11
* `stack --version` — identify the version and Git hash of the Stack executable
12
* `--verbose` (or `-v`) — much more info about internal operations (useful for
13
bug reports)
src/Options/Applicative/Complicated.hs
@@ -20,9 +20,9 @@ import Control.Monad.Trans.Writer ( runWriter, tell )
20
import Options.Applicative
21
( Parser, ParserFailure, ParserHelp, ParserResult (..)
22
, abortOption, command, execParserPure, footer, fullDesc
23
- , handleParseResult, header, help, info, infoOption, long
24
- , metavar, noBacktrack, prefs, progDesc, showHelpOnEmpty
25
- , hsubparser
+ , handleParseResult, header, help, hsubparser, info
+ , infoOption, long, metavar, noBacktrack, prefs, progDesc
+ , short, showHelpOnEmpty
26
)
27
import Options.Applicative.Builder.Extra ( showHelpText )
28
import Stack.Prelude
@@ -186,4 +186,5 @@ helpOption :: Parser (a -> a)
186
helpOption =
187
abortOption showHelpText $
188
long "help"
189
+ <> short 'h'
190
<> help "Show this help text."
src/Stack/Constants.hs
@@ -701,7 +701,8 @@ isStackUploadDisabled = STACK_DISABLE_STACK_UPLOAD
701
-- | The footer to the help for Stack's subcommands
702
globalFooter :: String
703
globalFooter =
704
- "Command 'stack --help' for global options that apply to all subcommands."
+ "Command 'stack --help' (or '-h') for global options that apply to all "
705
+ <> "subcommands."
706
707
-- | The type for GitHub REST API HTTP \'Basic\' authentication.
708
gitHubBasicAuthType :: ByteString
0 commit comments