自学内容网 自学内容网

git_新建仓库提交旧项目

将旧项目提交到新Git仓库中的步骤

1、首先,在本地将旧项目文件夹初始化为一个Git仓库:

cd /path/to/old_project
git init

2、将旧项目的文件添加到Git仓库中,并提交更改:

git add .
git commit -m "Initial commit of old project"

3、在新Git仓库中获取远程URL。在新创建的仓库页面上应该有一个URL,类似于:

https://github.com/username/new_repo.git

4、将新仓库的URL添加为旧项目的远程仓库:

git remote add new_origin https://github.com/username/new_repo.git

5、将旧项目推送到新仓库中:

git push -u new_origin master

原文地址:https://blog.csdn.net/Byron__/article/details/136233167

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!