2015-08-15 AnnatarHe
The Hard Way 做个全栈真是不容易啊,前后端都要懂,还得能写数据库的东西,连运维也给一起兼了。 JavaScript 现在JavaScript真是完成了屌丝逆袭的全过程。 原来这货长这样: foo 继续阅读 »
2015-07-20 Klaus Ma
git fetch origin git reset --hard origin/master 继续阅读 »
2015-05-05 AllanChan
git fetch Admin mdev (先Fetch) git merge FETCH_HEAD (再合并) 回滚 git reset --hard commit-id 查看当个文件 git log --pretty=oneline 文件名 跟新单个文件 git checkout origin/master -- path/to/file 继续阅读 »
2012-12-30 Klaus Ma
In a large cluster, some un-expected long running task hold back the job’s runtime sometimes. And those long running tasks are hard to locate in such a large cluster. Some ideas are shown here to help to locate those long running tasks. One of them will be implemented in the coming released of OGL. 继续阅读 »
2014-10-13 YongHao Hu
以前用git 不是非常优雅, 经常用git push -f, 然后在别的地方更新时就会出现conflict,然后要很麻烦的手动处理。 最近找到了比较一个优雅的方法: git fetch origin git reset --hard origin/master 继续阅读 »