我的项目是使用digitalocean进行laravel锻造 首先我添加了一个协作者并将其删除,因为当我尝试通过git push origin master修改代码时 我在laravel forge的仪表板中收到此错误
From github.com:name/project
* branch master -> FETCH_HEAD
aad781c..e558842 master -> origin/master
error: Your local changes to the following files would be overwritten by merge:
public/css/style.css
Please, commit your changes or stash them before you can merge.
Aborting
Updating aad781c..e558842
现在我收到一条新消息
From github.com:project/name
* branch master -> FETCH_HEAD
be3f227..aeddc3a master -> origin/master
Auto-merging .idea/workspace.xml
CONFLICT (add/add): Merge conflict in .idea/workspace.xml
Automatic merge failed; fix conflicts and then commit the result.
请任何帮助将不胜感激
答案 0 :(得分:1)
转到您在Digitalocean上拥有存储库的目录并运行
git stash
如果要保存此修改后的文件以供日后使用
或
git checkout public/css/style.css
如果您不需要此修改过的文件,并且希望获得回购邮件中的相同文件。
现在您可以执行标准程序从repo(git pull
或其他任何方式)获取修改过的文件。