所以我有我正在处理的项目的git存储库。
我为第一次提交设置了settings.py文件,就像我想要它在服务器上一样,然后我运行git update-index --assume-unchanged mysite/settings.py
因为我不想将任何更改推送到服务器,因为设置不同用于生产。现在,我想添加一些新设置,所以我在浏览器中添加了它们,保存了它们,git将它们拉到我的服务器上。
现在,当我尝试从笔记本电脑推送新代码时,我收到此错误:
To https://github.com/badger1661/smart-survey.git
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to 'https://github.com/badger1661/smart-survey.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.
我该如何解决这个问题。我想保留对我在github上设置的更改,但不要在笔记本电脑上使用它们。