我有一个github存储库。我在本地存储库中添加了一个新文件。现在我想将新添加的文件推送到我的github存储库。但是,它说
一切都是最新的
我使用以下命令添加文件。
git add dropDownDate.php
git commit -m "drop down date added"
git push origin master
当我刷新github页面时,我没有在github url中看到我的dropDownDate.php文件。我甚至尝试使用
再次设置远程URLgit remote set-url origin "https://github.com/mygitrepo.git"
但是,当我再次推动时,它会说一切都是最新的。
请告诉我哪里出错了。