heroku - git push error while pushing to remote repository -
i getting following error while trying push changes remote repository.
command
git push heroku
error
fatal: pushing remote 'heroku', not upstream of current branch 'master', without telling me push update remote branch.
can please advise might causing same?
i suspect don't have remote configured.
push likes know push , push it. 1 configures git automatically tracks branches (local - remote pairs).
try pushing: git push heroku master assuming master local branch , heroku remote.
also, see if remote not configured, (l)ist config or (e)dit it: git config -l / -e
since felix before me, i'll extend answer setting remote:
Comments
Post a Comment