a. git init
在本地创建一个Git仓库;
b. git add .
将项目添加到暂存区;
c. git commit -m "备注内容"
将项目提交到Git仓库;
a. 添加SSH KEY; # 若配置过,可跳过
b. 新建repositories;
a. git remote add origin git@github.com:UserName/projectName.git
将本地仓库与远程仓库关联;
b. git push -u origin master
将本地项目推送到远程仓库。
原文:https://www.cnblogs.com/L-shuai/p/14726045.html