07 2020 档案
摘要:1.合并多个commit为一个完整commit git rebase -i [startpoint] [endpoint] 其中-i的意思是--interactive,即弹出交互式的界面让用户编辑完成合并操作,[startpoint] [endpoint]则指定了一个编辑区间,如果不指定[endpo
阅读全文
摘要:git stash save 'product' #这时其他操作如 git pull git stash apply #不删除对应的stash 也可以: git stash #其他操作,然后操作完成后 git stash pop #删除对应stash 参考:https://blog.csdn.net
阅读全文
摘要:master@jay-intel:~$ cat /proc/uptime 6447032.12 48185264.69 master@jay-intel:~$ cat /proc/cpuinfo | grep processor | wc -l 8 第一列输出的是,系统启动到现在的时间(以秒为单位)
阅读全文
摘要:git diff --stat --name-only HEAD^ HEAD
阅读全文
摘要:提示:可以通过 man ssh_config,查看~/.ssh/config的语法。 ➜ tonny@tonny-pc ~/ssh vi ~/.ssh/config # snails Host snails HostName 115.29.240.144 Port 63210 IdentityFil
阅读全文
摘要:涉及命令:jobs, bg, fg, ctrl+z, tmux, screen 传送门:http://kuanghy.github.io/2016/12/31/linux-bg-process#:~:text=%E5%BF%AB%E6%8D%B7%E9%94%AE%20ctrl%2Dz%20%E8%
阅读全文
摘要:只需要:set list 或:set invlist即可以将不可见的字符显示出来,例如,会以^I表示一个tab符,$表示一个回车符等。 set nolist可以回到正常的模式。
阅读全文
摘要:1、关于忽略文件的配置。 git rm -r --cached . git add . git commit -m 'update .gitignore' 2、关于忽略文件的路径。 git config --global core.excludesfile ~/.gitignore, 路径中有斜杠注
阅读全文
摘要:robotframework 用法:https://blog.csdn.net/qw943571775/article/details/81505608 用法和示例https://www.ibm.com/developerworks/cn/opensource/os-cn-robot-framewo
阅读全文