帖子
分享您的知识。
Dec 12, 2024
专家问答
设置铸造厂
在使用 “forge init” 命令安装后尝试设置我的铸造厂时,我遇到了这个错误:
错误:提交失败 (code=some (128)、stdout= "”、stderr= "作者身份未知\n\n*** 请告诉我你是谁. \n\n 运行\n git config--global user.email\” you@example.com\”\n git config--global user.name\ “你的名字\”\n\n 来设置账户的默认身份. \n 省略--global 以仅在此存储库中设置身份. \n\n 致命:无法自动检测电子邮件地址(收到 “用户 @MACs-MBP”. (无)')”)
尽管我能够获得除了 “lib” 和 “.gitmodules” 之外的所有我需要的文件夹,但希望将来这不会影响我. 而且我还试着用 “forge init--force” 还是一样
- Cyfrin Updraft
- Foundry
- Solidity
1
2
分享
评论
答案
2Dec 12 2024, 11:35
您的系统上的全局 git 配置尚未设置. 在终端中使用以下命令
// Bash
git config --global user.email "your.email@example.com"
git config --global user.name "Your Name"
1
评论
你知道答案吗?
请登录并分享。
Cyfrin Updraft is an education platform specializing on teaching the next generation of smart contract developers
195帖子196答案