How do I update Askbot if I have changed the Git origin?
I have cloned Askbot from Github, set it up in development mode. I have removed the origin and added my local repo as its origin and committed it to my repository so that my teammates can checkout.
If I need to update/upgrade Askbot, how do I do it?
This is what I have done:
In my virtual env,
- git clone git://github.com/ASKBOT/askbot-devel.git my_site;
- cd my_site;
- python setup.py develop;
- askbot-setup;
Comments