# 新建1个文件夹
# 初始化
git init
# 关联
git remote add gitee https://gitee.com/用户名/仓库名.git
# 切换分支
git branch -M main
# 拉取
git pull --rebase gitee main
# 输入用户名和密码
报错:Incorrect username or password ( access token )
解决方案:
控制面板 -> 用户账户 -> 凭据管理器 -> Windows凭据
普通凭据下git:https://github.com/或git:https://gitee.com/
删除操作:点击删除 -> git push或git clone ->重新弹出输入账号密码界面
# 生成token
glpat-123456
# 新建1个文件夹
# 初始化
git init
# 关联
git remote add gitlab https://gitlab.com/goudan/test.git
# 切换分支
git branch -M main
# 拉取
git pull --rebase gitlab main
# 输入用户+token
# 修改代码
# 暂存 -> 提交 -> 推送
git push gitlab main
# 生成token
ghp_123456
# 新建1个文件夹
# 初始化
git init
# 关联
git remote add github https://ghp_123456@github.com/goudan/test.git
# 切换分支
git branch -M main
# 拉取
git pull --rebase github main