将旧项目提交到新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