-
Notifications
You must be signed in to change notification settings - Fork 7
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
initial stab at an user update role and test #57
base: master
Are you sure you want to change the base?
Conversation
Any ideas on how to go about deploying this? |
It's in the K8s cluster, no? |
So we don't have a good way of deploying schema updates just yet. You need to connect to the database directly and apply your patches |
In addition to addressing #57 (comment) please partially squash your commits down to logical increments. |
Partial squashes are not possible without destroying signatures. I can either squash the whole thing as one commit and destroy all history here, or ship it as is. Personally I prefer highly verbose commits that show the real time-frame and iteration of a set of changes to see a development thought process in the future if I am investigating something. |
Of course. Your new squashed commits should be newly signed.
You can squash some commits into each other.
The git repo doesn't need to be a permanent record of your exploratory learning. |
Git history should be immutable. Who cares how many commits it is. In a shared document like a Google doc, do we go through the history and clean up all the little edits? Also if there had been three authors in this branch, what would we do then? Would I squash all other peoples changes too and sign for them? This feels like just adding a lot of extra work with no gain. |
The gain is readability. The point of having version control is being able to see the sequence of changes that led from one state to another, and the point of commit messages is to document the intent of those changes. So, yeah, I'd argue it's pretty important to make that documentation readable. =^.^'= |
No description provided.