我在mey java项目上运行git bash并执行以下命令后,在git hub上创建了一个仓库:
git init git add . git commit -m "MENSAGEM"
但在提交后,我收到了消息:
*On branch main nothing to commit, working tree clean*
我试过这个
git remote set-url origin https://github.com/renantins/test.git
但没起作用
ohfgkhjo1#
根据你的描述,你发出了两次git commit命令(第一次用'MENSAGEM'作为注解),这就是为什么第二次提交说没有什么可提交的。只要用git log确认你的提交就可以了。如果你想改变提交消息,你可以修改你的最后一次提交。为了更进一步,github推荐使用git remote add origin https://....git(在github中新创建的repo中给出的指令)。使用git remote -v检查您的repo的来源。如果它看起来不错,然后使用git push -u origin main。就是这样。嗯,差不多吧;- ).在我的情况下,我还需要建立一个token,因为github不再支持user/pass登录。
git commit
git log
git remote add origin https://....git
git remote -v
git push -u origin main
1条答案
按热度按时间ohfgkhjo1#
根据你的描述,你发出了两次
git commit
命令(第一次用'MENSAGEM'作为注解),这就是为什么第二次提交说没有什么可提交的。只要用git log
确认你的提交就可以了。如果你想改变提交消息,你可以修改你的最后一次提交。为了更进一步,github推荐使用
git remote add origin https://....git
(在github中新创建的repo中给出的指令)。使用git remote -v
检查您的repo的来源。如果它看起来不错,然后使用git push -u origin main
。就是这样。嗯,差不多吧;- ).在我的情况下,我还需要建立一个token,因为github不再支持user/pass登录。