摘要:
因为权限太开放,需要使用chmod 400/600 给文件只读,读改权限。 再通过ssh-add -K 密钥地址。 就可以git clone 数据了。 主要问题就是在chmod上。 小记 阅读全文
摘要:
内容不一定详实,但确实有一些收获。 var fun=function(){ console.log('1') } function fun(){ console.log('2') } fun() //1 js中重复命名方法,会执行后面命名的。但是假如一个方法用变量的方式命名,上述的情况会执行变量的。 阅读全文