First time here? Check out the FAQ!
1

How do I update askbot?
 

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

How do I update askbot in the future?

Thanks.

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
DealsVistaCom's avatar
137
DealsVistaCom
updated 13 years ago, asked 13 years ago

Comments

see more comments

1 Answer

1
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'

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Evgeny's avatar
13.2k
Evgeny
updated 13 years ago, answered 13 years ago
link

Comments

you are wholesome!
DealsVistaCom's avatar DealsVistaCom (13 years ago)
huh? :)
Evgeny's avatar Evgeny (13 years ago)
see more comments