There are a number of options for building: :: > python setup.py develop builds and installs the ``gnome`` package in "development" (editable) mode. :: > python setup.py install builds and installs the ``gnome`` package into your Python install. Expand All @@ -469,7 +471,7 @@...
git checkout -b <new_branch> will create a new branch (the "-b" causes a new branch to be created) with the name of "new_branch":We can check which branch we're now by using git branch:As expected, we're on the new branch, 'fix1'. Now, we want to modify the README like...
Here is our current state of our git graph before the branching:Creating a dev branchTo create a new branch (dev), we need click "Branch" on the top menu.Hit "Create Branch", then our git looks like this:Pushing the dev branch to GitHub...