平时自己有一些本地的项目想把它们放到github上去,就需要关联一下。
步骤一:
在本地想放到github上的项目的根文件夹执行git init。
步骤二:
在github上新建一个仓库Repository,得到仓库地址。比如https://github.com/MR-yuhuash...
步骤三:
本地项目根文件夹执行:
git remote add origin https://github.com/MR-yuhuashi/jest-nuts.git
步骤四:
关联之后,就可以进行拉取远程代码和提交本地代码到远程等等操作啦
比如
git pull origin master
git add .
git commit -m 'first commit'
git push
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。