赞
踩
Git 提交代码 常用命令
查看状态 git status 提交代码 git add . 提交到本地仓库 git commit -m "提交到本地仓库" 查看分支 git branch 创建分支 git checkout -b login 切换到master分支 git checkout master login分支 合并到 主分支 [合并分支之后 还需要push 提交] git merge login 本地推送到码云仓库 git push 本地分支推送到云端分支 git push -u origin login 【如果报错:fatal: refusing to merge unrelated histories】 $git pull origin master --allow-unrelated-histories 切换仓库 git remote rm origin 添加到仓库 git remote add origin https:************************* 退出 : wq (冒号 + wq) 或者 :q 冒号+q
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。