DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
Clone the canonical ASF repo using this command. The --origin option tells git to name the remote apache instead of the default, origin; this will reduce ambiguity when we later add a second remote upstream:
git clone https://git-wip-us.apache.org/repos/asf/incubator-corinthia.git <yourRepoName> |
|---|
...
Save the patch from the Github patch link (just append .patch to the pull request link to get it). This patch will keep the authorship of the commit, so we should use it instead of the diff. Apply Apply the patch preserving the original author:
cd <yourRepoName> |
|---|
Quick git primer for workflow
...
In order to work, and have local commits (like "finished 1part, going out for lunch"), use the following recipe :
cd <yourRepoName> git co master git pull git branch -b work |
|---|
<do all your work, including several small commits>
| git commit -a -F ./your.logmessage |
|---|
dtest -plain to ensure all test
git co master git merge --squash work git commit -a -F ../your.logmessage git push |
|---|
Additional Information
Particularly for new committers, you may find the following information useful:
- Pro Git: Free book available as HTML and PDF. Also available in other languages, please see the HTML version for a list.
- Guide for new project committers
- Committers FAQ
- Git at Apache
...