获取代码的时候需要当前文件夹为空
使用git从远程仓库获取代码
git clone https://gitee.com/shllong/Hig/
然后创建项目.net core
提交项目的时候需要关闭vs
提交项目流程
git init # 创建仓库,如果是从远程获取到的就不需要创建仓库了git add . # 将当前文件夹添加到仓库中git commit -m "描述" # 提交仓库到中间库中,并添加描述git remote add origin https://gitee.com/shllong/Hig/ # 设置项目源git pull origin master # 拉取一下项目git push -u origin master # 提交项目
原文地址:https://www.cnblogs.com/sunhouzi/p/12107242.html
时间: 2024-10-16 20:51:26