1、清除本地版本控制(有需要的)
切换到项目目录下,执行一下命令
find . -name ".git" |xargs rm -Rf
2、初始化项目
git init
3、将项目添加到本地仓库中
git add ./
4、将本地项目和远程仓库关联
git push https://github.com/18373366025/poetry-search.git master
5、初始化本项目的git lfs,在本项目下执行
git lfs install
6、追踪需要上传的大文件
git lfs track src/main/resources/poetry-data/poetry_*.sql
7、添加.gitattributes文件
git add .gitattributes
8、将大文件添加到本地项目中
git add src/main/resources/poetry-data/poetry_*.sql
9、将项目提交到本地仓库中
git commit -m “描述”
10、将项目提交到远程仓库
git push -u origin master
输入用户名和personal access token(remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.从2021年9月13号以后不能使用密码,需要使用a personal access token )
11、可能会报错,执行提示的以下命令
git config lfs.[https://github.com/18373366025/poetry-search.git/info/lfs.locksverify](https://github.com/18373366025/poetry-search.git/info/lfs.locksverify) false
在执行上传命令,即可
git push -u origin master
|