Ian Barton <li...@manor-farm.org> writes:

> Don't worry it wont:) I have set up a repo for my Python version at
> git://github.com/geekinthesticks/org-reqall.git . It doesn't have
> anything in it at the moment, because I stupidly put my own reqall rss
> url in one of the versions for testing purposes, so its in the version
> history.
>
> Once I am happy that I have worked out how to make git rewrite
> history, I'll push it up there and post another message here.

You can use git rebase -i to rewrite the commit with your private URL
(maybe to a configuration variable value instead) and then push the
result.

Something like this:

   git rebase -i <Commit SHA to fix>^
   <edit file to fix it up>
   git add <file>
   git rebase --continue

HTH,
Bernt


_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to