DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
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 |
|---|
<continue working>
<run
dtest t -plain to ensure all test cases still work>
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
...