clone

Git|记一次Git clone报错

Warning: Permanently added 'domain.com,1.2.3.4' (RSA) to the list of known hosts. GitLab: The project you were looking for could not be found. fatal: Could not read from remote repository.

PHP|关于对象复制的一些事

先看对象复制的代码class CopyMe{}$first = new CopyMe();$second = $first;在PHP5及以后的版本,$first & $second指向同一个对象。在PHP中,对象的赋值和传递都是通过引用进行的。当我们需要一个对象的副本时,可以这么做:class CopyMe{}$first = new CopyMe();$second =

vim配置文件

先上地址 https://github.com/zhaoyingnan911/wuye.vim cd ~ mkdir vimbak mv .vimrc vimbak/vimrc mv .vim vimbak/vim git clone https://github.com/zhaoyingnan911/wuye.vim.git cd wuye.vim mv vimrc ~

mac安装arcanist

安装 git clone https://github.com/phacility/arcanist.git git clone https://github.com/phacility/libphutil.git 设置环境变量 vim ~/.zshrc export PATH=$PATH:/Users/xixicat/devtool/arcanist/bin source