DUE TO SPAM, SIGN-UP IS DISABLED. Goto Selfserve wiki signup and request an account.
...
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 |
|---|
<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
...