赞
踩
一般提交过程:
Git add xxxx
将文件添加到索引库里
Git commit -m “xxxxxxxxxxxxxxx”
将索引库中的文件提交
git push origin :
通常我们会使用git push origin HEAD:origin/将本地代码push到远程服务器上。很多人可能也和我一样有些疑问,此处的origin是什么意思?
事实上,我们可以通过git remote add git_alias git_remote即对远程的git 仓库产生一个别名。
更改本地分支的远程分支
git branch –set-upstream my_branch origin/my_branch
相当于在第一次提交时执行
如果错误的提交产生了远程分支,想删除远程分支可以通过
git push origin :branch-name
这样的原理就是将一个空分支提交到远程分支上,从而删除远程分支。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。