-
Notifications
You must be signed in to change notification settings - Fork 905
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
(GH-1416) Incorrect documentation for Install-ChocolateyInstallPackage #1425
Conversation
Hi @danyelcampbell, Looks great! Just one bit of fixing and it will be good to pull in. You can do it or I can handle it, your choice. The git commit message should be |
Oh, I should be able to do that! |
well, I've somehow done two reverts....wanted to do just one and edit the commit. No idea how to fix what I have done now D: |
Hi @danyelcampbell, |
I'm guessing you may have missed a step as this is in your master branch and not under a feature branch. Reverts are not the best way to manage fixes. From where you are now, here is what I would do:
Hope that helps. Here is an image that is helpful for the rebase part (which can be intimidating at first): |
Some helpful things with git - It's also helpful with removing commits from a branch. |
Okay, let me give this another shot! |
8893ff1
to
c5c88a0
Compare
I think I've finally done it! What a learning process this who thing has been :D |
Awesome! Git is definitely a learning process! |
The -ValidExitCodes should not have the "=" in it Fix -ValidExitCodes = @(0) to -ValidExitCodes @(0)
This has been merged into the stable branch here: 0906de8 Thank you for your contribution! |
The -ValidExitCodes should not have the "=" in it
Fix -ValidExitCodes = @(0) to -ValidExitCodes @(0)
Closes #1416