Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Add 'cd incubator-corinthia' to ;Setting up Your Repository' section.

...

Add a second remote, for the GitHub repository:

cd incubator-corinthia
git 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

...