📅  最后修改于: 2023-12-03 15:09:57.495000             🧑  作者: Mango
如果您已经在Github上创建了一个存储库,并且想将已有的代码推送到这个存储库中,您可以使用以下步骤:
git config --global user.name "Your Username"
git config --global user.email "youremail@domain.com"
git clone https://github.com/yourusername/yourrepository.git
git add .
git commit -m "commit message"
git branch -r
git push
如果您遇到错误,可能需要强制推送(使用带有-f选项的git push命令)。
以上就是将已有的代码推送到您的Github存储库的步骤。记得在每次推送代码之前,先将本地存储库与远程存储库同步,并遵循Git工作流程中的最佳实践。