Corrected lines to be no longer than 78 characters.#522
Conversation
|
Since you mentioned on your last PR that you want to learn about OSS and the like, I'll assume that you're also opening to learning about git. Commit messages are really really really valuable in source control. On this project they're slightly less important, but on other projects they're very important as reading them can help track the origin of a bug. Having two (or more), adjacent commits with exactly the same message is unhelpful for tracking bugs down. When you're working on your changes and notice that you want to do this, the best option is instead to do: The latter bit will update your last commit with the changes you've just made without creating a second commit with the same message. If you've already pushed to a branch on a remote repository, you'll have to update it with That said, you've already made two commits with the same message, but fear not, there's a way to update them (actually there are two ways, but I'll show you the simpler way here).
|
|
Thank you so much for your explanation. I think I got it corrected now. |
|
Perfect! 🍰 |
Corrected lines to be no longer than 78 characters.
No description provided.