git推送问题解决

为什么80%的码农都做不了架构师?>>>   hot3.png

当想把本地的一个项目推送到远端的时候,有时候会出现无法推送到远端,也无法从远端拉取提示:

fatal: refusing to merge unrelated histories

使用:git pull origin master --allow-unrelated-histories

另外一个推送本地分支到远端一个分支:

git push origin local_branch:remote_branch

这个操作,local_branch必须为你本地存在的分支,remote_branch为远程分支,如果remote_branch不存在则会自动创建分支。

类似,git push origin :remote_branch,local_branch留空的话则是删除远程remote_branch分支。

 

转载于:https://my.oschina.net/wenz/blog/860183

你可能感兴趣的:(git推送问题解决)