git常用基本操作
- 初始化git仓库
git init
- 从远程仓库克隆
git clone <远程仓库地址>
- git到暂存区
git add .
- git提交
git commit -m "<提交信息>"
- git提交到同步到远程仓库
git push <远程仓库/仓库名>
- git查看提交历史
git log
,在一行查看git log --pretty=oneline
- git查看所有分支
git branch -l
- git创建分支
git branch <新分支名>
- git从某个提交历史创建分支
git branch -b <哈希>
- git和某个本地分支合并
git merge <分支名>
- git切换所在分支
git checkout <分支名>
- git回滚提交历史
git reset --head <哈希>
- git添加远程仓库
git remote add <仓库名> <远程仓库地址>
持续更新
原文地址:https://www.cnblogs.com/freesfu/p/11674060.html
时间: 2024-10-28 12:25:09