git简易使用
使用Ubuntu下的git客户端
1 安装
sudo apt install git
2 配置个人信息
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
3 生成SSH公私钥
ssh-keygen -t rsa -C <your_email@example.com> 后面连续按Enter就可以了,
公私钥保存在/home/you/.ssh/id_rsa.pub,
4 在github https://github.com/settings/keys页面可以添加SSH公钥,拷贝全部内容id_rsa.pub
5 使用github一般先通过页面建立一个空的仓库,然后用
git clone ssh:xxx
git add xxx
git commit -m "xx"
git push origin master/branch
6 也可以通过命令直接建立仓库
git remote add origin master
参考:
http://www.bootcss.com/p/git-guide/