-
How can I make my first contribution to the |
Beta Was this translation helpful? Give feedback.
Answered by
jpangas
Mar 8, 2023
Replies: 1 comment 4 replies
-
Making your contributionEnsure you have properly setup the
git checkout main git fetch upstream git merge upstream/main
git checkout -b my_feature_branch_name
pre-commit -V #Output should be pre-commit version
git add modified_file git commit -m "Type a nice commit message"
git push -u origin my_feature_branch_name
|
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
jpangas
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Making your contribution
Ensure you have properly setup the
bugbug
repository on your computer. Please see #3338 if you would like to know how to properly setup the repository on your computer.good-first-bug
. Issues are considered not assigned, until there is a PR linked to them. Feel free to work on any unassigned issue, you don't need to ask first. Remember to always use a feature_branch to mak…