这个问题在这里已经有答案了:
git一次添加多个文件(3个答案)三年前关门了。如何将子目录中的多个文件发送到github?我想发送我的项目完成,但我不能!我正在使用:
git add . git commit -m "Coment" git push -u origin master
mnemlml81#
确保已正确设置git远程url。您可以使用以下命令进行检查:
git remote -v
如果没有,可以使用以下命令进行设置:
git remote set-url origin git@github.com:USERNAME/REPOSITORY.git
或用于https
git remote set-url origin https://github.com/USERNAME/REPOSITORY.git
1条答案
按热度按时间mnemlml81#
确保已正确设置git远程url。您可以使用以下命令进行检查:
如果没有,可以使用以下命令进行设置:
或用于https