-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
mention that there are many other options, not shown in the default help #3628
Conversation
src/compiler/crystal/command.cr
Outdated
@@ -28,6 +28,8 @@ class Crystal::Command | |||
tool run a tool | |||
help, --help, -h show this help | |||
version, --version, -v show version | |||
Run a command followed with --help to see command specific options, ex: | |||
crystal init --help |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd rather show crystal <command> --help
, that's what e.g. git does
Works for me...
…On Wed, Jun 28, 2017 at 3:09 PM, Johannes Müller ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In src/compiler/crystal/command.cr
<#3628 (comment)>:
> @@ -28,6 +28,8 @@ class Crystal::Command
tool run a tool
help, --help, -h show this help
version, --version, -v show version
+ Run a command followed with --help to see command specific options, ex:
+ crystal init --help
I'd rather show crystal <command> --help, that's what e.g. git does
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#3628 (review)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAAw0OwodWex9n-wQte6I7ELO2kCzZW7ks5sIsDvgaJpZM4LDD62>
.
|
src/compiler/crystal/command.cr
Outdated
@@ -28,6 +28,8 @@ class Crystal::Command | |||
tool run a tool | |||
help, --help, -h show this help | |||
version, --version, -v show version | |||
Run a command followed with --help to see command specific options, ex: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe better "followed by"?
@rdp will you continue working on this? |
I assumed since it was minor whoever committed it would just fix it up,
would you prefer I work on it?
…On Sun, Jun 3, 2018 at 10:48 PM, Benoit de Chezelles < ***@***.***> wrote:
@rdp <https://github.com/rdp> will you continue working on this?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#3628 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAAw0AfiMeeiPOLugdZXmuOzbDPw000Cks5t5LwygaJpZM4LDD62>
.
|
Well I can't push to your own branch, so I guess I can't just fix it up |
e3d5817
to
9b1ed02
Compare
Sorry I missed you message and didn't understand how to accomplish PR's back then. Check it now, better late than never, thank you! :) |
There are many options "not shown in the default -h" but it doesn't mention them very well.
So add a note so people can know how to get further help, from the command line.