mirror of
https://github.com/HavocFramework/Havoc
synced 2026-06-08 11:13:29 +00:00
461 B
461 B
Guide to Contributing
Pushing Changes to dev
- It is preferred that new changes are pushed to a new branch, and then a pull request is made to merge that new branch back into Main/Master
- Steps:
- Create a new local branch:
git switch -c <new_branch_name>
- Confirm the new branch was created:
git branch -a
- Confirm the upstream branch you'll be committing to and make a push:
git push -set-upstream origin <new_branch_name>
- Create a new local branch: