Ask Your Question
1

How do I update askbot?

asked Jun 10 '11

DealsVistaCom gravatar image DealsVistaCom
127 4 4 13
http://www.dealsvista.com...

updated Jun 10 '11

Let's say I have installed Askbot with pip install askbot

How do I update askbot in the future?

Thanks.

1 Answer

Sort by ยป oldest newest most voted
1
DealsVistaCom has selected this answer as correct

answered Jun 10 '11

Evgeny gravatar image Evgeny flag of Chile
6665 31 49 95
http://askbot.org/

updated Jun 10 '11

pip install -U askbot

-U switch is for update.

If you used git, then something like:

git fetch origin master:master-updated
git checkout master
git merge master-updated

Assuming that the remote repository from where askbot is brought is called "origin" and that the main branch is called "master"., after the merge in may be necessary to resolve conflicts in the case your edits overlapped with the ones in the project, then

git add <fixed files>
git commit -m 'merged with the development repository'
link

Comments

you are wholesome! DealsVistaCom (Jun 10 '11)
huh? :) Evgeny (Jun 10 '11)

Your answer

Please start posting your answer anonymously - your answer will be saved within the current session and published after you log in or create a new account. Please try to give a substantial answer, for discussions, please use comments and please do remember to vote (after you log in)!
[hide preview]

Question tools

Follow

subscribe to rss feed

Stats

Asked: Jun 10 '11

Seen: 58 times

Last updated: Jun 10 '11