git clone https://www.modelscope.cn/nanac09/test04.git
cd modelname
cp -rf /Users/luna/Documents/msgit/new/* . # 被添加的文件不在当前模型文件时,将文件复制到当前文件夹下
git add -A .
git commit -m"try commit message again"
git push
第一步:选定一个文件夹,将项目文件存储下来
cd /Users/luna/Documents/msgit
第二步:git clone 魔搭项目初始文件到本地,本地的文件夹名称为魔搭项目名称 test04
git clone https://www.modelscope.cn/nanac09/test04.git
第三步:如果被添加的本地文件不在 test04 文件夹内,需要将文件复制到 test04 内。如果在文件夹内,这一步省略。
cp -rf /Users/luna/Documents/msgit/new/* . # 被添加的文件不在当前模型文件时,将文件复制到当前文件夹下
第四步:将test04文件夹添加到 Git 暂存区
git add -A .
第五步:添加本次提交的简要说明
git commit -m"try commit message again"
第六步:将本地仓库中的代码推送到远程仓库
git push