On Tue, Jul 6, 2010 at 12:42 PM, Misha Koshelev misha680@gmail.com wrote:
Thank you so much for the info. I will probably just keep the Zip file for now but if the number of patches gets out of hand will try git again :-) Thanks again
Misha
On Jul 6, 2010 12:18 PM, "Mike Kaplinskiy" mike.kaplinskiy@gmail.com wrote:
On Tue, Jul 6, 2010 at 11:27 AM, Misha Koshelev misha680@gmail.com wrote:
Fyi I am just going to...
It shouldn't be too hard. Something like the below might work.
git rebase -i upstream/master # delete anything you like. Or put edit instead of pick to edit it git push -f origin master # forces a push even though your tree is not at the HEAD of origin
This breaks git history and can make people forking/pulling your tree angry but assuming you don't care about them, all is well :).
Mike.
On second thought, your method works quite well. Maybe I will keep a github repo - I still need one bit of advice though before I ditch my scripts...
is there a good way to get rid of trailing whitespace, ideally when making a git commit -a -n ?
It seems like an annoying problem that should be easily solvable...
Thank you Misha