摘要:
##shell continue ###条件判断 #!/bin/bash for (( i=0;i<=10;i++ )) do if (( i>0 && i<7 ));then continue else echo "Number is $i" fi done 结果: Number is 0 Num 阅读全文
摘要:
##git 查看代码是谁提交的 有很多种方法,比如登陆gitlab查看,或者在本地查看等 ###用idea查看 当我们拉取代码后,本地代码或者脚本无法定位是谁写的。需要找到责任人时,可以在idea上查看 在代码行数部分右键,选择annotate 可以看到是谁提交的代码和提交时间 阅读全文