
git
princekin_wdk
这个作者很懒,什么都没留下…
展开
-
git更新.gitignore后如何提交
git rm -r --cached .//清空缓存git add .//重新提交git commit -m "update .gitignore"git push原创 2017-03-29 00:03:55 · 5343 阅读 · 0 评论 -
SSH key
1.检查是否已存在SSH key $ ls -al ~/.ssh2.生成新的SSH keyssh-keygen -t rsa -b 4096 -C "your_email@example.com"会提示保存到哪个文件,默认/c/Users/you/.ssh/id_rsa 然后提示输入密码和确认密码 3.将SSH key添加到ssh-agent$ eval $(ssh-agent -s)$ ss翻译 2017-03-29 22:17:31 · 231 阅读 · 0 评论