git 基本使用
初始化本地项目并上传
- 创建远程仓库
- 创建本地项目
- 初始化本地项目git仓库
bash
git init
- 关联远程仓库
bash
git remote add origin 远程URL
- 将变更添加到git管理
bash
git add .
- 提交到本地仓库
bash
git commit -m "备注"
- 提交到远程仓库-u:记录push分支,下次可简写git push 、 -f 强制推送
bash
git push -u origin 远程分支
期间可能遇到的问题
- push报错,提示分支版本不一致等问题,可执行以下命令后再尝试push
bash
git pull origin main --allow-unrelated-histories
git branch --set-upstream-to=origin/远程分支 本地要关联的分支
其他常用命令
- 查看当前仓库仓库地址
bash
git remote -v
- 查看当前仓库本地和远程分支
bash
git branch -a
- 切换分支
bash
git checkout 分支名
- 从当前分支拉出一个新分支
bash
git checkout -b 新分支名