标签: git git-push
我有一个克隆的存储库到我的本地文件夹(在localhost等中进行了更改)。如何将更改推送到服务器?我在我的分支上使用GitShell命令,使用git add,commit和push。
答案 0 :(得分:0)
使用push命令将本地更改推送到远程仓库:
push
git push origin <branch>
您可以从FREE online Pro Git book了解有关如何push以及其他Git工具和工作流程的更多信息。