标签:origin git 仓库 关联 Git 常用命令 远程 分支
初始化本地仓库:git init
本地仓库关联远程仓库:git remote add origin “git 地址”
查看已关联的仓库:git remote -v
切换关联仓库(如从HTTPS方式的关联仓库切换到SSH方式关联的仓库):
(1)取消关联:git remote remove origin
(2)重新关联:git remote add origin “git SSH方式的地址”
查看所有的分支:git branch -a
更新分支列表(当你不能查看到完整的分支列表时):git fetch
切换分支:git checkout 分支名
创建分支:git branch 分支名
强制删除分支:git branch-D 分支名
非强制删除分支(不可删除当前分支):git branch -d 分支名
创建并切换到新分支:git checkout -b 分支名
克隆远程仓库的项目代码:git clone “远程仓库地址”
克隆远程仓库指定分支的代码:git clone “远程仓库地址”
拉取远程分支:git pull 远程分支
提交变更到本地仓库:git commit -m “修改信息注释”
将你的分支推到远程仓库:git push origin “本地分支名”:远程分支名
撤销本地commit: (1)git log 查看commit_id (2)git reset --hard commit_id
查看当前仓库的状态:git status
查看提交历史:git log
tip:提交前先git pull是一个好习惯!
标签:origin,
git,
仓库,
关联,
Git,
常用命令,
远程,
分支
From: https://blog.csdn.net/qq_48539582/article/details/139837062