Been using git for a little bit now, but only the basic features.
In order to switch to Textmate and keep the cool local history feature that Eclipse had, I did this. Which is working great.
But now I'm working on a team with a private github repository. I don't want to pollute the team with my full local history of useless commits.
I know there are some tools to edit my commits, but:
git rebase -i
You asked me to rebase without telling me which branch you want to rebase against,
SNIP
What branch? :)
So I'm wondering if you have tips on how to manage all this. I'd like to combine all commits for one file into one commit max. And edit the message so it says something useful.
Thanks!