-
Notifications
You must be signed in to change notification settings - Fork 21
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
Added some bug fixes and some new functionality to the existing code,… #291
base: master
Are you sure you want to change the base?
Conversation
… like saving monitor and led information to the registry.
@@ -1,4 +1,4 @@ | |||
# Copyright (C) 2011 Ted White | |||
# Copyright (C) 2011 Ted White |
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.
Delete white space at end of line.
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 can make these changes. Should I submit a new pull request once they are made?
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.
In general you just push more commits to the pull requested branch, but in this case see my notes below.
Thanks much for doing this. Warning: this is a lot of information on how to manage your workflow in git. It's not meant as criticism or to waste your time, but rather to help you guys integrate into how we do things and establish good practices so you can continue to contribute as much as possible in the future. In other words, I'm picking on stuff now so that things are smoother down the road. It's good practice to keep pull requests as small and issue-specific as possible. This one addresses two things: 1) Fixing bugs in existing code, and 2) adding new features. We want to separate those things. It's easiest for the reviewer and for anyone looking at the repository history if those two things happen separately. It's important to focus on making the reviewer's life as easy at the cost of making the author's life a bit harder because the reviewer is already at a disadvantage in that he/she is usually less familiar with the code in question. One way to remember to do this is to file an issue before making any change (which you did) and then always make each branch in git dedicated to one single issue. In the future that's probably a good way to go. See #292 for further discussion. Here are the steps you can take to fix this all up. It looks like a lot, but it's not hard and you might pick up a really cool piece of git-fu.
If this proves too complex we can try to think of another solution. I may be missing something simpler. One thing I can think of is for someone on our end to do the git-surgery, but I think it would be nice for someone over there to learn the tricks of the trade. |
@@ -19,11 +19,9 @@ | |||
name = DC Rack Server | |||
version = 2.2 |
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.
Bump version number?
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.
@jwenner this PR was sort of re-issued elsewhere. I think we may actually want to close this one.
… like saving monitor and led information to the registry.