DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
Add a second remote, for the GitHub repository:
cd incubator-corinthiagit remote add github https://github.com/apache/incubator-corinthia.git |
|---|
...
Start with getting the repository and setting up:
git clone --origin https://git-wip-us.apache.org/repos/asf/incubator-corinthia.git cd incubator-corinthia git pull |
|---|
Applying one change:
git apply ../your.patch git add -u git commit -F ../your.logmessage git push |
|---|
Working on a batch of small changes as one commit:
git pull git branch -b work <do all your work, including several small commits> git co master git merge --squash work git commit -a -F ../your.logmessage git push |
|---|
Additional Information
...