On Mon, Oct 12, 2009 at 4:05 PM, Tekkub <[email protected]> wrote: >>> I have a project that I have hosted on my private server and I'd like >>> to make it open source on github. This would be really easy, except >>> for the fact that I have my login and password all over the commit >>> history (won't do that again). Is there any way to set up git or >>> GitHub to only have commits/history going forward?
It's technically possible to run a sed -i -e 'blarg' on every file in the repo on every commit and by doing, make a new commit history. You'd use git filter-branch and like 50 shell scripts. It can be done, but you'll spend all weekend on it. I have done something similar just to say I did it. If the commit history has any value that'd be the way to go. Otherwise rm -rf .git is probably the way to go. -- If riding in an airplane is flying, then riding in a boat is swimming. 114 jumps, 47.2 minutes of freefall, 90.4 freefall miles. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "GitHub" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/github?hl=en -~----------~----~----~----~------~----~------~--~---
