git建仓库小记
git建仓库小记
- 1.新建远端git仓库
- 2.新建本地仓库
- 3.添加ssh key
- 4.将本地仓库关联到远端
- 5.push & pull
每次新建git项目的时候都要翻翻之前收藏的几篇帖子,索性自己汇总一下记录,以后一次粘贴搞定。
1.新建远端git仓库
这个比较简单,网页上点两下就能创建完毕。
2.新建本地仓库
打开git终端,先创建本地账户
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
git init
这样就可以在项目目录下多出一个.git文件夹,里面保存着相关项目的基本信息。
3.添加ssh key
如果是首次使用git管理项目,需要添加ssh key,这样后续push和pull更加方便。
ssh-keygen -t rsa -C "you@example.com"
这样就生成了自己的公钥和私钥,windows系统默认存放在C:/Users/{user name}/.ssh目录下,linux存放在 ~/ 目录。将公钥id_rsa.pub的内容粘贴到git上的ssh-key上即可。
4.将本地仓库关联到远端
git remote add origin https://github.com/<remote>.git
5.push & pull
由于初始远端为空仓库,推送需要用以下命令:
git push -u origin master
后续直接用:
git push origin master