在gitee上创建了一个远程仓库地址,然后将本地创建了文件夹和文件,通过git init、git add 、git commit 和 git push一些列操作提交到远程仓库地址,出现以下错误:
$ git push https://gitee.com/iqiuq/leet-code.git
fatal: The current branch master has no upstream branch.
To push the current branch and set the remote as upstream, use
git push --set-upstream https://gitee.com/iqiuq/leet-code.git master
因为远程仓库分支较多,在默认情况下,git push一般会推送到origin下的master分支上,然而当仓库的branch分支过多, 本地和远程分支又没有设置关联时,git就会产生疑问,因为它无法判断你的push目标。
方式一:根据git提示,执行以下命令。
git push --set-upstream origin master
注意:该方式要保证远程分支存在,如果不存在,也就无法进行关联。
方式二:指定推送分支。
git push -u origin master
注意:该方式当远程分支不存在,会自动创建一个出来,以实现关联。
以上git命令中的origin是你的远程仓库地址。
如何避免自己创建的远程仓库和本地没有关联?
先创建远程仓库,然后把远程仓库clone到本地,再在克隆下来的文件夹里操作,这样远程仓库和本地就是有关联的了。