git常用功能-给她给她给她
1. 常见命令
git add # 将工作区的修改提交到暂存区
git commit # 将暂存区的修改提交到当前分支
git reset # 回退到某一个版本
git stash # 保存某次修改
git pull # 从远程更新代码
git push # 将本地代码更新到远程分支上
git log # 查看提交历史
git reflog # 查看历史命令
git status # 查看当前仓库的状态
git diff # 查看修改
git revert # 回退某个修改
git rebase # 变基
git branch # 创建分支
git merge # 合并
git fetch # 从远程主机同步
git remote # 列出所有远程分支(别名)
git clone # 从远程主机克隆
git cherry-pick # 拣选
git checkout -b <name> <template> #分支名 模块名
--------------------------------------------------------------------------------------------------
2. 常见用法
git add abc.txt
git commit -m "just for test 20210301"
git push/git push origin master
git pull
git status
git branch testing
git checkout feature
git merge master
# 或者直接指定两个分支:
git merge master feature
git checkout feature
git rebase master // 将 master 上的修改合并到 feature 分支(当前分支)。
等等
------------------------------------------------------------------------------------------------------