C/C++教程

Remove untracked files, stash or commit any changes, and try again

本文主要是介绍Remove untracked files, stash or commit any changes, and try again,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

 在react 项目中暴露webpack 配置文件的时候,执行

yarn run eject

 

报错

Remove untracked files, stash or commit any changes, and try again.
error Command failed with exit code 1.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

  

 

 

其实就是因为工程默认的git 导致的(git配置文件)

 

 


在默认执行一次

git status

git add . // 添加全部

git commit -m "first" //首次commit 一次

// 就ok了

 

 

这篇关于Remove untracked files, stash or commit any changes, and try again的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!