标签:rem font ranch 切换 stream nbsp 注意 没有 成功
1、首先新建分支:
git branch testOne
2、等到提交代码的时候,到git push的时候发现,git给了个这样的提示:
fatal: The current branch testOne has no upstream branch.
To push the current branch and set the remote as upstream,
注意:这样的提示就是说,你本地的分支没有和远程的分支建立联系,需要进行联系才可以;
3、解决办法
只需要在输入 git push -u origin testOne
(远程分支名), 因为本身我就在本地的testOne分支上面,所以可以直接 push
,不在testOne 分支的话需要 git checkout testOne
切换到testOne分支,个人建议最好是本地分支新建的时候与远程分支命名一致。
这样就可以成功push了
标签:rem font ranch 切换 stream nbsp 注意 没有 成功
原文地址:https://www.cnblogs.com/zhilu/p/14073397.html