标签:远程仓库 日志 git add set -- mit 更改 获取 远程
1.基本操作
git init
初始化仓库
git status
查看仓库状态
git add XXX.XX
向暂存区中添加文件XXX.XX
git commit
保存仓库的历史记录
git log
查看提交日志
git diff
查看更改前后的差别
2.分支操作
git branch
显示分支一览表
git checkout -b XXX
切换到XXX分支并进行提交
git checkout XXX
切换到XXX分支
git checkout -
切换回上一分支
git merge --no-ff XXX
合并提交XXX
git log --graph
以图表的形式查看分支
3.更改提交的操作
git reset
回溯历史版本
git commit -amend
修改提交信息
git rebase -i
压缩历史
4.推送至远程仓库
git remote add
添加远程仓库
git push
推送至远程仓库
git clone
获取远程仓库
git pull
获取最新的远程仓库分支
标签:远程仓库 日志 git add set -- mit 更改 获取 远程
原文地址:https://www.cnblogs.com/hwnzy/p/10176888.html