git基本
作者:
gakiww | 来源:发表于
2019-03-05 10:55 被阅读0次 git clone git://github.com/schacon/grit.git // 克隆项目
git status // 查看状态
git diff // 查看被修改部分 q退出
git add // 添加修改
git commit -m '' // 本地提交 '', 内为本次提交说明信息
git pull origin 分支 // 拉取线上最新分支
git push origin 分支 // 提交
git branch // 查看本地分支, -a 可查看远程分支
git checkout -b dev origin/dev // 切换分支, -b无此分支时创建分支
git merge -m "merging the data from wosunny to master" wosunny // 合并分支
git reset --hard 版本号 // 版本回退
git stash //将本地代码stash到仓库中
本文标题:git基本
本文链接:https://www.haomeiwen.com/subject/ntmeoftx.html
网友评论