企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# 一、本地文件如何在当前文件夹中直接提交到git服务器 1、在当前文件中 git init创建本地私仓 2、git remote add origin [http://172.16.1.23:8083/esa-group/esa-fe.git](http://172.16.1.23:8083/esa-group/esa-fe.git) 3、查看远端仓库地址 git remote -V 4、无误后 git pull origin master 拉取远端文件 ★这里注意,本地文件如果和远端文件出现冲突一定要解决冲突才能提交 [使用git pull提示refusing to merge unrelated histories](https://www.cnblogs.com/cmingjian/p/6629607.html) 解决办法:git pull origin master --allow-unrelated-histories 5、最后 git push origin master