会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
i舒
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
7
8
9
10
11
12
13
14
15
···
18
下一页
2020年9月5日
python print函数实现不换行行首打印
摘要: 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舒
阅读(1776)
评论(0)
推荐(0)
2020年7月30日
【Git】rebase 用法小结(转)
摘要: 1.合并多个commit为一个完整commit git rebase -i [startpoint] [endpoint] 其中-i的意思是--interactive,即弹出交互式的界面让用户编辑完成合并操作,[startpoint] [endpoint]则指定了一个编辑区间,如果不指定[endpo
阅读全文
posted @ 2020-07-30 07:01 i舒
阅读(588)
评论(0)
推荐(0)
2020年7月8日
git stash 暂时保存修改
摘要: 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舒
阅读(1018)
评论(0)
推荐(0)
2020年7月7日
系统启动运行时间
摘要: 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舒
阅读(270)
评论(0)
推荐(0)
git 查看修改了哪些文件
摘要: git diff --stat --name-only HEAD^ HEAD
阅读全文
posted @ 2020-07-07 10:07 i舒
阅读(11951)
评论(0)
推荐(0)
2020年7月3日
ssh key config文件管理多个key
摘要: 提示:可以通过 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舒
阅读(485)
评论(0)
推荐(0)
linux进程后台运行
摘要: 涉及命令: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舒
阅读(184)
评论(0)
推荐(0)
vim 显示和关闭显示不可见字符
摘要: 只需要:set list 或:set invlist即可以将不可见的字符显示出来,例如,会以^I表示一个tab符,$表示一个回车符等。 set nolist可以回到正常的模式。
阅读全文
posted @ 2020-07-03 09:15 i舒
阅读(2224)
评论(0)
推荐(0)
2020年7月1日
.gitignore文件的位置
摘要: 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舒
阅读(3710)
评论(0)
推荐(0)
robotframework 用法
摘要: 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舒
阅读(267)
评论(0)
推荐(0)
上一页
1
···
7
8
9
10
11
12
13
14
15
···
18
下一页
公告