GIT: 没有显示我已推送到存储库的文件

GIT: Not showing files I have push to the repository

我已经 fork 一个 repo 并拉取:

git pull origin master

我添加了一些文件并进行了一些更改,我想将我的更改推送到我的分支:

git add -A
git commit -m "some changes"
git push

但是我得到了这个错误:

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 origin master

我尝试设置原点:

git push origin master

但是我得到了这个错误:

error: src refspec develop does not match any.
error: failed to push some refs to 'https://github.com/meme/forkRepo.git'

我用这个修复了:

git结帐大师

最后我推了一下:

git push
Everything up-to-date

但我去了 GitHub 并在浏览器中检查了我的 fork 存储库,但我添加的文件和文件更改没有显示。你们谁知道我的更改去了哪里?我仍然可以在我的计算机上看到这些文件和我的更改。

非常感谢你的帮助

问题是由于某种原因当前分支在上游不存在。请注意,在错误消息中,它确切地告诉您要使用什么,但您错过了 --set-upstream 标志。

But I got this error:

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 origin master I tried to set the origin:

git push origin master

git push --set-upstream origin master