徐小玉的博客。
发布时间:2018-01-26 09:34:29
Git中从远程的分支获取最新的版本到本地有这样2个命令:1. git fetch:相当于是从远程获取最新版本到本地,不会自动merge git fetchorigin mastergit log -p master..origin/mastergit mergeorigin/master 以上命令的含义: 首先从远程的o.........【阅读全文】
发布时间:2018-01-22 15:51:02
2018-01-22:To get the file change lists , the difference between your work area and the remote master. since the remote master is the latest verson of laest deploy, it is the file change list for this patch.git diff origin/master HEAD --name-status......【阅读全文】
发布时间:2017-09-08 12:14:36
a111b2222c33333d44f555555g6666h7777i8888j999x0000把每行的第一个字符移到最后。awkawk '{print substr($0,2,length($0)) substr($0,0,1)}' file5 >> txttest1 $0 的第二个字符开始,长度为length($0) $0 的第0个字符开始,长度为1sed '/^.\(1\)s/$/1/' file5\(..........【阅读全文】