1、创建本地分支:git branch 分支名 2、查看本地分支:git branch 3、切换本地分支:git checkout 分支名 4、删除本地分支: git branch -D 分支名 5、删除远程分支:git push origin --delete 分支名 6、合并分支:git mer ...
分类:
其他好文 时间:
2020-05-14 22:21:15
阅读次数:
71
<?php $arrContextOptions=array( "ssl"=>array( "verify_peer"=>false, "verify_peer_name"=>false, ), ); $response = file_get_contents("https://maps.co.we ...
分类:
其他好文 时间:
2020-05-14 11:23:00
阅读次数:
65
Git 安装: windows及Mac下的安装直接在官网下载安装即可 Linux系统安装 Ubuntu sudo apt-get install git CentOS sudo yum install git(没有安装yum命令需先安装) 检验是否安装成功 git --version 查看git版本 ...
分类:
其他好文 时间:
2020-05-14 01:41:55
阅读次数:
70
u boot代码分析 第一节 编者:weirdo 时间:2020 5 12 QQ:2651293248 标题:u boot代码分析第一节 1. u boot.lds文件 :deciduous_tree: 2. u boot.map文件 :white_flower: 3. _start标号 :bana ...
分类:
其他好文 时间:
2020-05-13 23:25:01
阅读次数:
74
Git 最重要的三个区:工作区 暂存区 仓库区 1. 基础命令 git init 初始化仓库,新建一个 .git 隐藏的文件件(暂存区 + 仓库区) git add . 将内容从工作区,添加到暂存区 git commit -m ‘提交信息’ 将内容从暂存区,提交到仓库区 git status 查看状 ...
分类:
其他好文 时间:
2020-05-13 11:41:00
阅读次数:
53
缺失值、重复值的查看、删除、填充,使用dropna、fillna、interpolate函数处理缺失值,使用duplicated、drop_duplicates函数处理重复值,使用reset_index函数重置行索引 ...
分类:
其他好文 时间:
2020-05-12 18:34:36
阅读次数:
93
git分布式控制系统 创建目录作为你的仓库,在目录中通过git init 命令进行初始化; 仓库可视为有3个区域:工作区、暂存区、版本区 git add xxx.txt :将xxx.txt文件从工作区转到暂存区 git commiit -m “备注” 将所有存在暂存区的文件都提交到版本区 git l ...
分类:
编程语言 时间:
2020-05-12 17:28:13
阅读次数:
87
Come on –Everybody’s doing it. That whispered message, half invitation and half forcing, is what most of us think of when we hear the words peer press ...
分类:
其他好文 时间:
2020-05-12 16:51:44
阅读次数:
126
【摘要】 问题 KPI异常检测项目需要对设备内多模块、多类型数据,并根据波形以及异常表现进行分析,这样的数据量往往较大,对内存和性能要求较高。同时,在设计优化算法时,需要快速得到训练及测试结果并根据结果来调整算法,因此进一步要求计算内存和性能达到较高的水平。当前,本地安全PC性能难以满足调试要求,难 ...
分类:
其他好文 时间:
2020-05-12 11:59:31
阅读次数:
85
原文地址 :https://simpleisbetterthancomplex.com/tutorial/2016/07/26/how to reset migrations.html 本文描述了几张方法来重置老是出错的Django Migration How to Reset Migration ...
分类:
编程语言 时间:
2020-05-12 09:33:50
阅读次数:
71