安装git
在终端输入
git config --global user.name "username"
git config --global user.email "username@mail.com"
- 创建秘钥
ssh-keygen -t rsa -C "username@mail.com"
- 复制秘钥
~/.ssh/id_rsa.pub
- 转到你的github账户,进入settings,点击左侧的"SSH Keys",再点击右侧的"Add SSH Key",在上方空格处添加一个标签如"timo@node7",在下方大空格处粘贴你刚刚复制的公共秘钥,然后在终端输入
ssh -T git@github.com
- 在github上创建仓库,然后复制clone下面的SSH(HTTPS会有问题),然后再终端输入
git clone 刚刚复制的git地址
- 然后本地就可以看到clone下来的仓库啦,每次上传github的三部曲:
git add -A; DATE=$(date "+%Y%m%d"); git commit -m $DATE --no-verify; git push
参考
https://zhuanlan.zhihu.com/p/60727196
https://stackoverflow.com/questions/6565357/git-push-requires-username-and-password