...
Casual Browsing
Code Block |
---|
https://git-wip-usgitbox.apache.org/repos/asf?p=knox.git |
Contributor Workflow
This is the simple workflow and will work well for small features development for people who don't have direct access to check in to the Apache repository. Let's assume you are working on a feature or bug called, KNOX-nnn:
1. Checkout a new repository:
Code Block |
---|
git clone githttps://gitgitbox.apache.org/repos/asf/knox.git |
2. Create and checkout a branch to work in:
...
1. As in the other workflows begin by checking out Knox (if you haven't already):
Code Block |
---|
git clone githttps://gitgitbox.apache.org/repos/asf/knox.git/ |
This sets up the remote alias "origin" automatically which refers back to the Apache repo.
2. Create a new github repository on your github account to use for stashing changes. There are various ways to do this, I just forked the Apache Knox repo (https://github.com/apache/knox) which creates a repo https://github.com/<github_username>/knox
3. Add an alias on your local repository to github to avoid typing:
...