
git
WangminzeSpk
这个作者很懒,什么都没留下…
展开
-
git 国外镜像下载慢的解决方案
git clone https://gitclone.com/github.com/xxx/yyy.git 加速clone。比如:threejs的github地址是:https://github.com/mrdoob/three.js.git在终端里输入:git clone https://gitclone.com/github.com/mrdoob/three.js.git原创 2020-07-05 13:37:19 · 658 阅读 · 0 评论 -
git 配置公钥仍然需要输入密码 的解决方法
打开终端输入命令:vim /etc/ssh/ssh_configHost * RSAAuthentication yes PubkeyAuthentication yes GSSAPIAuthentication yes其中,RSAAuthentication yes与PubkeyAuthentication yes是新增内容。...原创 2019-06-25 17:32:35 · 3832 阅读 · 3 评论 -
Git 常用命令集锦
设置分支跟踪关系:git branch --set-upstream-to=origin/${origin_branch_name} ${local_branch_name}删除远程分支:git push origin --delete ${origin_branch_name}删除本地分支:git branch -d/-D ${local_branch_name}创建新分支并且和远...原创 2019-07-10 10:27:43 · 253 阅读 · 1 评论