From 441ac15a0a4bb69ab4d55d9c9609c59bec6e3152 Mon Sep 17 00:00:00 2001 From: Hemna Date: Fri, 8 Jan 2021 12:28:17 -0500 Subject: [PATCH] Updated README with more workflow details --- README.rst | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index a540d8d..6b0546c 100644 --- a/README.rst +++ b/README.rst @@ -351,11 +351,18 @@ Workflow While working aprsd, The workflow is as follows -* Edit code, save file +* checkout a new branch to work on +* git checkout -b mybranch +* Edit code * run tox -epep8 * run tox -efmt * run tox -p * git commit ( This will run the pre-commit hooks which does checks too ) +* Once you are done with all of your commits, then push up the branch to + github +* git push -u origin mybranch +* Create a pull request from your branch so github tests can run and we can do + a code review. Release