我去bitbucket,我看到其他编码员执行了提交 在更新我的本地代码之前,我从代码中执行了git pull
然而现在我正在尝试推送代码而我无法
这是我的命令行
git status
nothing to commit, working directory clean
git add .
git commit -m "Adding all files"
nothing to commit, working directory clean
git push -f
答案 0 :(得分:1)
您没有推送您的代码,您只是在本地提交,您必须git push origin <branchName>
答案 1 :(得分:0)
首先,看起来你没有任何文件要提交 一旦你有了一些内容,就必须推送它。
由于你没有任何内容,你也没有任何东西可以推动。
看起来你的文件被git忽略了。
显示所有被忽略文件的列表:
git check-ignore *
git check-ignore -v *