如果本地已经建好了项目,想把它推送到远程仓库,需要使用git remote命令连接。操作步骤如下:

初始化git

git init

添加远程仓库

git remote add origin [email protected]:yourName/repositoryname.git

git remote add origin <https://github.com/yourName/repositoryname.git>