As the other answer says, you probably want to create a new branch for your current work-in-progress as you're committing so frequently. This branch is the one that you push and pull between your private repositories. You might create that branch with:
git checkout -b wip master
Then when you want to commit, just do it with a:
git commit -m "Work in progress"
... or something similar.
If you're happy that you want to group together all the changes on the wip branch into a single commit, you can do:
git checkout master
# Rather than create a merge commit or a fast-forward, stage the
# effect that the merge would have to the tree:
git merge --squash wip
# Check that that looks sensible:
git diff --cached
# Now commit and write a proper commit message describing the changes:
git commit
After that, you should have a single new commit on master that groups together all the changes that you'd made on wip. If you do the same thing subsequently, you should still only get the additional changes that the merge would introduce as a single commit, so you don't need to worry about rebasing wip - there may be some conflicts to resolve, of course.
I think that approach (successive uses of git merge --squash wip) would work, but, if were you, I probably wouldn't do that in practice. That's because I'd like to leave behind topic branches for the new features that I decided to merge into master and be able to see those merges. Instead, I would probably take a slightly more involved approach:
- Work away on the
wip branch, creating lots of tiny commits.
- Stop when there are some changes that make logical sense together and that can be grouped into commits and merged into master.
- Think of a name for that new feature or change represented by those changes, e.g.
add-menu-bar.
- Create a new work-in-progress branch based on the current
wip, for example with: git checkout -b wip2
- Use interactive rebase to reorder and squash your commits so that those that will be part of
add-menu-bar are earliest in the history after divergence from master: git rebase -i master. Note that this is rewriting the new wip2 branch and leaves the original wip branch as it was.
- Find the object name (SHA1sum) of the last commit in that branch that you want to be in the topic branch
add-menu-bar - let's say that's f414f31. Then create the topic branch at that commit: git branch add-menu-bar f414f31
- Now merge that new topic branch into
master with git checkout master && git merge --no-ff add-menu-bar.
- Push your new
master to anywhere that you need to.
- Switch back to
wip2 and rebase it onto the new master: git checkout wip2 && git rebase master.
Now you work on the new wip2 branch instead, and that's the one that you push and pull between your repositories. The reason for creating a new work-in-progress branch is that then you don't have to worry the business of force-pushing the original wip branch to the other repositories, rebasing or resetting the branch there, etc. etc.