码迷,mamicode.com
首页 >  
搜索关键字:remote command    ( 15467个结果
git简单操作
从远程仓库下载到本地 git clone 仓库地址 本地修改的文件添加上传队列 git add * 上传队列中的文件提交到本地仓库 git commit -m '提交的说明' 将本地仓库的内容推送到远程仓库 git push origin master 拉取远程仓库内容到本地,更新代码 git pu ...
分类:其他好文   时间:2020-12-31 12:46:06    阅读次数:0
Git使用
Git工作原理 WorkSpace:本地工作区 Index:暂存区 Repository:仓库区(或本地仓库) Remote:远程仓库 Git命令 git config # 查看配置信息 # --local:仓库级,--global:全局级,--system:系统级 $ git config <-- ...
分类:其他好文   时间:2020-12-30 11:01:38    阅读次数:0
ubuntu 更新python,从3.5更新到3.7
查看 python3版本 python3 --version 安装python3.7 sudo apt-get install python3.7 报错如下: Reading package lists... Done Building dependency tree Reading state i ...
分类:编程语言   时间:2020-12-30 10:44:34    阅读次数:0
JVM调优问题简单总结
JVM调优问题简单总结 jvm调优在我看来就是扩扩内存,修改一下虚拟机运行参数,再不行换个垃圾回收器,比如G1什么的。 但是,对运行时问题的定位却是个大问题,今天就来总结一下,这两天学习的关于jvm调优的一些查用的排查方式 CPU突然飙升怎么排查 因为在服务器上不只有Java进程还有其他进程,所以需 ...
分类:其他好文   时间:2020-12-29 11:44:09    阅读次数:0
nodejs传递参数
How to parse command line arguments Passing in arguments via the command line is an extremely basic programming task, and a necessity for anyone tryin ...
分类:Web程序   时间:2020-12-29 11:32:27    阅读次数:0
python3操作ftp
ftp相关的包不需要安装,python自带 # -*- coding:utf-8 -*- from ftplib import FTP def upload(f, remote_path, local_path): fp = open(local_path, "rb") buf_size = 102 ...
分类:编程语言   时间:2020-12-29 11:28:50    阅读次数:0
常用的 curl 发送 http 请求 命令
curl is a a command line tool that allows to transfer data across the network. It supports lots of protocols out of the box, including HTTP, HTTPS, FT ...
分类:Web程序   时间:2020-12-29 11:24:49    阅读次数:0
倒排索引
**全文检索(Full-text Search)**:即先建立索引,再对索引进行搜索(倒排索引)。索引是从非结构化数据中提取出之后重新组织的信息。 ![lucene的一般过程.png](https://segmentfault.com/img/remote/1460000021695249) 全文检 ...
分类:其他好文   时间:2020-12-29 11:21:51    阅读次数:0
学习 shell 反弹实现, 优化 Docker 基础镜像安全
天天都在说优化Dockerfile。到底怎么优化,优化后的检验指标又是什么?没有考虑清楚行动目的,隔空放炮,必然徒劳无功。笔者最近准备在CI上增加安全检测,在分析案例样本的时候,找到了比较流行的struts2漏洞,其中S2-052远程代码执行漏洞的利用方式就是在POST请求中添加恶意代码或命令。如Demo片段所示。<command><string>touch</str
分类:系统相关   时间:2020-12-25 13:21:15    阅读次数:0
DRF使用超链接API实现真正RESTful
很多API并不是真正的实现了RESTful,而应该叫做RPC (Remote Procedure Call 远程过程调用),Roy Fielding曾经提到了它们的区别,原文如下: I am getting frustrated by the number of people calling any ...
分类:Windows程序   时间:2020-12-25 13:17:22    阅读次数:0
15467条   上一页 1 ... 24 25 26 27 28 ... 1547 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!