This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Galaxy local update

When I tried to update galaxy server which is installed on redhat linux.

Command I used :

git checkout release_17.05 && git pull --ff-only origin release_17.05

Error:

error: pathspec 'release_17.05' did not match any file(s) known to git.

Please let me know how to resolve this issue and give suggestions for updating galaxy.

galaxy local update

1 answer

You most likely need to run git fetch origin first to ensure git has a local copy of all the changes in the master repository at GitHub. That would explain why your local git repository has no matches to release_17.05.

Log in to answer this question.