I'm having trouble pushing my commit upstream. I presume I haven't set up my local git repository correctly but I'm having trouble figuring out what I did wrong. My git remote -v
looks like the push to github page says it should:
friedmab@rescomp5002:~/proj/AnalysisPageServer % git remote -v
origin git@github.com:apomatix/AnalysisPageServer.git (fetch)
origin git@github.com:apomatix/AnalysisPageServer.git (push)
upstream git@git.bioconductor.org:packages/BiocGenerics.git (fetch)
upstream git@git.bioconductor.org:packages/BiocGenerics.git (push)
I've run git push already:
friedmab@rescomp5002:~/proj/AnalysisPageServer % git push origin master
Everything up-to-date
But I can't push to the upstream:
friedmab@rescomp5002:~/proj/AnalysisPageServer % git push upstream master
FATAL: W any packages/BiocGenerics b.friedman DENIED by fallthru
(or you mis-spelled the reponame)
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
Based on the daily build logs it looks like the old version of my package is still building.
Any suggestions?
Thank you
Brad