찾다

 >  Q&A  >  본문

flask - git远程库回退问题

本人用flask已经在heroku部署完成
我需要修改代码重新提交,误将路径切换另外一个文件夹,将此错误文件夹的master分支提交到远程库了
命令为git push heroku master
而我切换到正确的代码文件夹再提交,提示

 ! [rejected]        master -> master (non-fast-forward)
error: failed to push some refs to     'https://git.heroku.com/hulumei.git'
hint: Updates were rejected because the tip of your current branch is behind
hint: its remote counterpart. Integrate the remote changes (e.g.
hint: 'git pull ...') before pushing again.
hint: See the 'Note about fast-forwards' in 'git push --help' for details.  

如果用git pull,则把远程仓库的错误代码和本地代码合并了,然后我在用git reset --hard 版本号命令回退到正确的节点,再提交到远程库,还是提示上面的信息
求大神解答?拜谢

伊谢尔伦伊谢尔伦2765일 전540

모든 응답(2)나는 대답할 것이다

  • 阿神

    阿神2017-05-02 09:28:03

    현재 브랜치의 코드가 올바른지 확인할 수 있는 경우.

    으아아아

    회신하다
    0
  • 習慣沉默

    習慣沉默2017-05-02 09:28:03

    원격 녹화 실행 취소

    • git reset --hard HEAD~1 #기록 취소

    • git push -f heroku HEAD:master #원격창고에 동기화

    git undo 원격 기록

    회신하다
    0
  • 취소회신하다