Git本地存储库提交导出

问题描述 投票:0回答:1

我可能有一个愚蠢的问题。我将使用本地存储库来完成我的项目。是否可以将具有所有提交历史记录的整个存储库导出到远程存储库(例如,我将在半年内创建它)。例如,所有提交都会出现在github或其他远程git平台的提交历史中吗?

git export repository local
1个回答
0
投票

是的,它会将所有提交历史记录推送到远程分支。

只需添加远程分支和推送

git remote add origin https://github.com/user/repo.git

然后通过以下命令推送

git push <remote_branch> <local_branch>

© www.soinside.com 2019 - 2024. All rights reserved.