步骤一:
在本地想放到github上的项目的根文件夹执行git init。
步骤二:
在github上新建一个仓库Repository,得到仓库地址。比如https://github.com/simon.git
步骤三:
本地项目根文件夹执行:
git remote add origin https://github.com/simon.git
步骤四:
关联之后,就可以进行拉取远程代码和提交本地代码到远程等等操作啦
比如
git pull origin master
git add .
git commit -m 'first commit'
git push
标签: git