git使用

1.资源

https://gitee.com/all-about-git

2.配置用户名和邮箱

$ git config —global user.name “gan” $ git config —global user.email 1178814817@qq.com

3.关系

4.使用ssh

这里必须设置

5.更换远端

git remote remove origin //移除原来远程git仓库地址

git remote add origin 新仓库地址xxx //添加新git仓库地址

6.发布

git add .

git commit -m “xxxx”

git tag v1.22.831.1

git push origin main

git push —tags

问题

fatal: refusing to merge unrelated histories

git pull origin master —allow-unrelated-histories