代码改变世界

阅读排行榜

git branch --set-upstream-to 本地关联远程分支

2020-12-02 10:06 by jetwill, 18081 阅读, 收藏,
摘要: 最近使用git pull的时候多次碰见下面的情况: There is no tracking information for the current branch. Please specify which branch you want to merge with. See git-pull(1) 阅读全文

CentOS7中安装pip的方法

2020-08-20 20:18 by jetwill, 9172 阅读, 收藏,
摘要: 1、安装epel-release [root@localhost ~]# yum -y install epel-release 2、安装python-pip [root@localhost ~]# yum -y install python-pip 3、修改pip源 [root@localhost 阅读全文

tar中的参数 cvf,xvf,cvzf,zxvf的区别

2020-07-27 16:07 by jetwill, 8911 阅读, 收藏,
摘要: 转自:http://blog.sina.com.cn/s/blog_49b1f7210102ve9n.html tar cvf etcbak.tar etc/ 打包一个tar tar xvf etcbak.tar 解开一个tar tar zcvf etcbak.tar.gz etc/ 打包压缩一个 阅读全文

git 基于某个分支创建分支

2020-07-09 16:36 by jetwill, 7476 阅读, 收藏,
摘要: 1、拷贝源代码 git clone git@git地址 cd 项目目录 2、根据已有分支创建新的分支 git checkout -b yourbranchname origin/oldbranchname 3、推送到git git push origin yourbranchname 4、 git 阅读全文

Linux查看进程启动时间和运行多长时间

2020-08-26 13:57 by jetwill, 7233 阅读, 收藏,
摘要: Linux 查看进程启动时间和运行多长时间 启动时间 ps -eo lstart 运行多长时间 ps -eo etime -bash-4.1$ ps -eo pid,lstart,etime | grep 188637 188637 Wed Aug 26 11:37:45 2020 02:16:44 阅读全文
上一页 1 2 3 4 5 6 ··· 40 下一页