其他分享
首页 > 其他分享> > 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了

 

 

标签:files,again,git,配置文件,stash,untracked,commit,any
来源: https://www.cnblogs.com/tianmiaogongzuoshi/p/15858792.html