上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 18 下一页
摘要: https://blog.csdn.net/lch551218/article/details/105446636 python中的print(*objects, sep=' ', end='\n', file=sys.stdout, flush=False)函数的参数说明如下: 参数说明 obje 阅读全文
posted @ 2020-09-05 22:25 i舒 阅读(1606) 评论(0) 推荐(0) 编辑
摘要: 1.合并多个commit为一个完整commit git rebase -i [startpoint] [endpoint] 其中-i的意思是--interactive,即弹出交互式的界面让用户编辑完成合并操作,[startpoint] [endpoint]则指定了一个编辑区间,如果不指定[endpo 阅读全文
posted @ 2020-07-30 07:01 i舒 阅读(566) 评论(0) 推荐(0) 编辑
摘要: git stash save 'product' #这时其他操作如 git pull git stash apply #不删除对应的stash 也可以: git stash #其他操作,然后操作完成后 git stash pop #删除对应stash 参考:https://blog.csdn.net 阅读全文
posted @ 2020-07-08 09:37 i舒 阅读(1013) 评论(0) 推荐(0) 编辑
摘要: master@jay-intel:~$ cat /proc/uptime 6447032.12 48185264.69 master@jay-intel:~$ cat /proc/cpuinfo | grep processor | wc -l 8 第一列输出的是,系统启动到现在的时间(以秒为单位) 阅读全文
posted @ 2020-07-07 15:50 i舒 阅读(259) 评论(0) 推荐(0) 编辑
摘要: git diff --stat --name-only HEAD^ HEAD 阅读全文
posted @ 2020-07-07 10:07 i舒 阅读(11936) 评论(0) 推荐(0) 编辑
摘要: 提示:可以通过 man ssh_config,查看~/.ssh/config的语法。 ➜ tonny@tonny-pc ~/ssh vi ~/.ssh/config # snails Host snails HostName 115.29.240.144 Port 63210 IdentityFil 阅读全文
posted @ 2020-07-03 13:55 i舒 阅读(469) 评论(0) 推荐(0) 编辑
摘要: 涉及命令: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% 阅读全文
posted @ 2020-07-03 09:29 i舒 阅读(181) 评论(0) 推荐(0) 编辑
摘要: 只需要:set list 或:set invlist即可以将不可见的字符显示出来,例如,会以^I表示一个tab符,$表示一个回车符等。 set nolist可以回到正常的模式。 阅读全文
posted @ 2020-07-03 09:15 i舒 阅读(1918) 评论(0) 推荐(0) 编辑
摘要: 1、关于忽略文件的配置。 git rm -r --cached . git add . git commit -m 'update .gitignore' 2、关于忽略文件的路径。 git config --global core.excludesfile ~/.gitignore, 路径中有斜杠注 阅读全文
posted @ 2020-07-01 16:21 i舒 阅读(3661) 评论(0) 推荐(0) 编辑
摘要: robotframework 用法:https://blog.csdn.net/qw943571775/article/details/81505608 用法和示例https://www.ibm.com/developerworks/cn/opensource/os-cn-robot-framewo 阅读全文
posted @ 2020-07-01 08:27 i舒 阅读(260) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 18 下一页