[个人笔记] Git的CLI笔录

Git - CLI笔录

Git的CLI笔录


Git的CLI笔录

bash 复制代码
origin: 表示远程仓库节点名称。 当有多个远程仓库时 可新增远程仓库节点名称如 new_origin | new_remote
origin/HEAD: 表示当前Git仓库默认分支的引用,通常指向origin/master或origin/main
git symbolic-ref refs/remotes/origin/HEAD	# 查看origin/HEAD引用所指向的分支

--------------------------------------------------------------
git branch 				# 查看本地分支
git branch <branch>		# 本地创建<branch>分支
git branch -r			# 只显示远程分支,不显示本地分支
git branch -a			# 查看完整显示(远程分支+本地分支)
git branch -M main		# 强制重命名主分支为main
git branch -d <branch>	# 删除本地的<branch>分支
git checkout <branch>	# 本地分支切换到<branch>分支(前提是<branch>分支已存在)
git branch -u new_origin/<branch>		# 切换当前对应的远程分支,切换到new_origin仓库的<branch>分支
git remote -v				# 查看远程仓库
git remote update			# 同步远程Git仓库和本地仓库
git remote add origin <URL>	# 添加远程Git仓库URL
git remote remove <URL>		# 删除远程Git仓库URL

--------------------------------------------------------------
git pull = git fetch + git merge

git fetch origin			# 同步本地仓库
git fetch <URL> <branch>	# 从远程Git仓库中获取<branch>分支到本地
git merge origin/<branch>	# 把远程Git仓库的<branch>分支合并到当前分支(合并到origin/HEAD分支)
git pull <branch>			# 拉取远程的<branch>分支到本地主分支(main/master)
git pull origin <remote_branch>:<local_branch>		# 拉取远程的<remote_branch>分支到本地的<local_branch>分支
git push origin <branch>	# 将本地的<branch>分支推送到远程Git仓库(自动创建<branch>分支)
git push origin <remote_branch>:<local_branch>		# 将本地的<local_branch>分支推送到远程Git仓库的<remote_branch>分支
git push -f origin <remote_branch>:<local_branch>	# (强制)将本地的<local_branch>分支推送到远程Git仓库的<remote_branch>分支
git push origin -d <branch>		# 删除远程Git仓库的<branch>分支

--------------------------------------------------------------
git clone <URL>			# 克隆远程Git仓库xxx项目到本地
git add .				# 提交全部文件 | 指定文件
git commit -m 'desc'	# 提交请求并添加描述 

--------------------------------------------------------------
git reflog							# 查看本地提交操作编号
git reset --hard xxx				# 回退到指定hard编号的提交操作
git push -f origin master:master	# 本地master强制覆盖到远程Git仓库master分支

--------------------------------------------------------------
--------------------------------------------------------------
--------------------------------------------------------------
### 本地已有项目文件, 需要同步到 远程Git仓库 /Github仓库, 操作的全流程如下
# 进入项目的根目录路径
echo '# project description' >> README.md
git init
git add .
git commit -m 'commit v1.0.0 open source code.'
git branch -M main
git remote add origin <URL>
git push -u origin main
相关推荐
夏天的味道٥2 小时前
Linux 安装 Git 服务器
linux·服务器·git
东方神剑20234 小时前
【Git】git从暂存区中移除文件
git
池佳齐4 小时前
《AI大模型开发笔记》——Prompt提示词最佳实践
人工智能·笔记·prompt
Ice1664 小时前
算法学习笔记(十):位运算、数论等
笔记·学习
尘佑不尘5 小时前
蓝队基础,了解企业安全管理架构
数据库·笔记·安全·web安全·蓝队
特种加菲猫6 小时前
初阶数据结构之队列的实现
开发语言·数据结构·笔记
醉陌离6 小时前
渗透测试学习笔记——shodan(3)
笔记·学习
誓约酱7 小时前
(动画)Qt控件 QLCDNumer
开发语言·c++·git·qt·编辑器
家有狸花7 小时前
Node.js笔记(四)局域网聊天室2:服务端接受客户端消息
笔记·node.js
gfxr12127 小时前
笔记mfc11
笔记