-
-
Notifications
You must be signed in to change notification settings - Fork 375
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
No git #237
Conversation
@@ -56,7 +56,7 @@ export default asyncCommand({ | |||
git: { | |||
description: 'Initialize version control using git', | |||
type: 'boolean', | |||
default: true | |||
default: false |
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'm not really sure if setting --git
to false by default or not.
Leaving --git
to true
by default and not making an initial commit makes sense to me.
@developit any thoughts?
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 think we are trying to hard here. User know how to initilize a git repo. Just leave it to user.
ok, Option B: leave @thangngoc89 @reznord which one do you think guys? |
@prateekbh I'm good with both, anyways for Option B it is just a matter of one command away. So, I'm with @thangngoc89 here. |
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.
Jason is also fine with not having git by default.
Fixes #216,
This will put --git in default state of
false
so that when user says --git he knows that there will some git activity, and we wont do aut commits without his knowledge