赞
踩
git init 新项目初始化 git add . git commit -m "项目介绍" git remote add origin ‘提交地址’ git push -u origin master git log 查看提交日志 git reset --hard AA 回退到AA版本 git push -f 强行让本地代码覆盖git上的代码 git pull git add . 添加到本地仓库 git commit -m '描述' 提交 git push git remote update origin --prune 刷新分支 git branch -a 查看所有分支和当前分支 git checkout -b B 创建并切换到test git checkout A 回到当前分支A git branch -a 查看你本地所有的分支 git checkout -b A 创建并切换到A git pull origin A 拉A分支的代码 git merge B 就是把B分支 合并到 A分支 git push origin A 提交到A分支 git clone 地址 // 拉取远程代码 git clone 地址 -b 分支名 // 拉取远程指定分支的代码
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。