Git篇

一.常用命令

拉远程的repo至本地
git clone 

基于目前分支创建新的分支
git checkout -b branch-name

显示当前分支
git branch

添加已修改文件(文件夹)
git add file_name

提交commit
git commit -m "some information"

查询remote的repo
git remote -v

添加自己或fork来的仓库
git remote add upstream https://...

推commit至某一repo
git push origin/upstream

其他命令
reset至某一commit但不强制还原代码
git log        //复制想要还原的点
git reset --soft + hash_value

在修改代码之前需要进行rebase
拉取最新的数据
git fetch origin
git rebase origin/branch

附录
掘金Git小册:https://juejin.cn/book/6844733697996881928/section/6844733698047229965
Pro Git:https://git-scm.com/book/zh/v2

你可能感兴趣的:(Git篇)