push本地项目到远程仓库

107 阅读1分钟
 git init
 git remote add origin https://....git(git 地址,关联远程仓库)
 git add .
 git commit -m '#'
 git push -u origin master