git


Git是目前世界上最先进的分布式版本控制系统。
![[Pasted image 20230330173533.png]]

使用

关于分支

删除分支

https://chinese.freecodecamp.org/news/how-to-delete-a-git-branch-both-locally-and-remotely/
2020年11月30日

# 删除本地分支
git branch -d localBranchName
# 删除远程分支
git push origin --delete remoteBranchName
# 删除远程分支
git branch -r -d origin/branch-name  
git push origin :branch-name
# 删除本地分支里远程不存在的分支
git fetch --prune

切换分支

关联分支

查看分支

# 加上-a参数可以查看远程分支,远程分支会用红色表示出来(如果你开了颜色支持的话)
git branch -a
# 查看本地分支和远程分支的关联
三选一
git branch -vv
git remote show origin
cat .git/config

关于仓库

仓库地址

git remote -v

代理设置

  1. https://gist.github.com/laispace/666dd7b27e9116faece6

git checkout

新建分支

# 本地会新建一个分支名叫 branch_name ,会自动跟踪远程的同名分支 branch_name
# 远程新建了一个分支,本地没有该分支
git checkout --track origin/branch_name
# 本地新建了一个分支 branch_name,但是在远程没有
git push --set-upstream origin new_branch_name  # 在远程新建分支

切换分支

git checkout branch_name

文章作者: 田山
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 田山 !
  目录