在git中,我们需要时时去提交更新,那么我们首先是可用进行pull代码到本地中,在本地中修改了代码如果需要进行push,那么先把新创建和修改的代码 add到暂存区中,然后fetch一个远程最新的代码。然后再rebase,如果有冲突的时候会进行提示,然后我们进行改冲突,然后在commit,然后再pus ...
分类:
其他好文 时间:
2019-11-28 19:05:02
阅读次数:
72
项目中用python来链接impala数据库最常见,一个简单的链接,获取结果。 #!/usr/bin/python # -*- coding:utf-8 -*- from impala.dbapi import connect import sys reload(sys) sys.setdefaul ...
分类:
数据库 时间:
2019-11-25 15:35:11
阅读次数:
120
【前言】 Vue里发送AJAX有很多工具可以供开发者使用 ①浏览器自带的fetch函数 ②vue之前推荐的vue-resource第三方模块 ③vue官方目前强力推荐的axios第三方模块 axios可以实现跨平台数据请求 【主体】 (1)安装axios npm i axios --save (2) ...
分类:
Web程序 时间:
2019-11-24 17:38:09
阅读次数:
83
来自Stackoverflow
链接:http://stackoverflow.com/questions/10312521/how-to-fetch-all-git-branches ...
分类:
其他好文 时间:
2019-11-24 13:53:55
阅读次数:
134
``` from selenium import webdriver options = webdriver.ChromeOptions() options.add_argument('--headless') options.add_argument('--dns-prefetch-disable... ...
分类:
Web程序 时间:
2019-11-22 12:12:44
阅读次数:
379
[toc] web服务传输html文件: 静态,动态网页: 服务器程序和应用程序 : 传输静态网页 wsgiref模块: jinja2模板语法: 连接数据库 ...
分类:
其他好文 时间:
2019-11-21 19:56:48
阅读次数:
62
react获取服务器APi接口的数据: react中没有提供专门的请求数据的模块。但是我们可以使用任何第三方请求数据模块实现请求数据 一、axios 获取Api数据 使用文档:https://www.npmjs.com/package/axios git项目地址:https://github.com ...
分类:
移动开发 时间:
2019-11-18 12:53:17
阅读次数:
80
WEP Cracking Packet Injection What if the AP was idle, or had no clients associated with it? In this case, we have to inject packets into the traffic ...
分类:
Web程序 时间:
2019-11-15 00:07:53
阅读次数:
94
1.git的结构 工作区 >{add}> 暂存区 >{commit}> 本地库 >{push}> 远程库 远程库 >{clone,pull}>本地库 ps:花括号代表其间的操作方式 ,pull由fetch + merge组成 1.1 初始化 git init 1.2 linux查看隐藏文件 ls - ...
分类:
其他好文 时间:
2019-11-14 21:41:42
阅读次数:
56