赞
踩
- # 这个过程分2步:
- # -1 新建并切换到一个本地分支
- # -2 将这个新分支推送到远程github仓库
- git checkout -b v100-5
- git push origin v100-5:v100-5 # 前面是本地分支名,后面的是远程分支名,只提供一个参数的话,默认将目前分支推送到你给出名字的远程分支
git remote -v
- # 删除远程仓库
- git remote remove origin
- # 新建
- git remote add origin $your_repo_link
- # 删除全部改动
- git checkout .
- # 删除某个文件
- git checkout -- filename
- git rm -r --cached . #清除缓存
- git add . #重新trace file
- git commit -m "update .gitignore" #提交和注释
- git push origin master #可选,如果需要同步到remote上的话
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。