Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Corrected a space.

...

 

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 to t-plain to ensure all test case cases still work> 
git co master
git merge --squash work
git commit -a -F ../your.logmessage
git push

 

Additional Information

...