Improvements in Contribution Guide #161
Replies: 2 comments 1 reply
-
I don't think it should become our responsibility to explain to the end user how to use the In general, we assume that GitHub contributors have learned these skills from elsewhere. I don't mind adding a But, it's probably easier to explain to beginners how to use GitHub desktop rather than the GitHub CLI though. |
Beta Was this translation helpful? Give feedback.
-
I don't mean to explain to the user how to use Git. Rather to indicate some way to follow how to create the branches or make the messages of the commits. Example:
And the messages of the commits should carry the number of the issues type: |
Beta Was this translation helpful? Give feedback.
-
I feel that there should be some rule-like form of what the branches that will be created when making some modification should be called. For example:
The example.py file is modified by a misspelled comment
And an issues called
"Wrong comment on example.py" #001
is createdTo create the branch I feel it should be type:
git branch bug-example
and to send the commit it should be something like:
git commit -m "Bug example #001"
So have more clear and orderly that is done.
In addition to everything indicate when a CHANGELOG should be made and what steps should be followed.
Beta Was this translation helpful? Give feedback.
All reactions