1、cd到文件目录下
2、文件中有Git文件 需要移除 命令:rm -rf .git
3、git init
4、git add .
5、git commit -m "initial" 引号内为第一次提交的内容
6、git remote add origin https://gitee.com/************.git 后面的地址为在码云上创建仓库的地址
7、git pull origin master --allow-unrelated-histories (esc+shit+冒号 输入q退出)
8、git push -u origin master 完成
注意:现在默认是提交到main 改成master的方法:依次执行以下的命令即可
% git branch
git checkout -b temp
git branch -m master
git merge temp
git push -u origin master
ps:在码云上创建项目 无需去勾选底部的选项,如此这个仓库中就没有任何东西 这样可以只执行上面的4、5、6、8