下午新建一个项目,准备push到git上面,结果不是很懂git的我,忽略了当本地与repo上面的文件如果不一致,则拒绝push。 看到一个博客里的问题和我的一毛一样: 主要原因就是因为repo上面的比如markdown文件不在本地。 通过如下命令进行代码合并【注:pull=fetch+merge] ...
分类:
其他好文 时间:
2021-02-23 13:59:26
阅读次数:
0
github fork一个分之后,过一段时间就会和主分支的差异比较大。 这样提交pr的时候就会冲突,这个时候我们就需要和主分支同步代码。 步骤: 1. git remote add upstream git@github.com:coreos/etcd.git //本地添加远程主分支,叫upstre ...
分类:
其他好文 时间:
2021-02-22 12:20:10
阅读次数:
0
Given an array of intervals where intervals[i] = [starti, endi], merge all overlapping intervals, and return an array of the non-overlapping intervals ...
分类:
其他好文 时间:
2021-02-16 12:04:54
阅读次数:
0
Oracle表连接方法有四种: 排序合并连接(Sort Merge Join) 嵌套循环连接(Nested Loops Join) 哈希连接(Hash Join) 笛卡尔积(Cartesian Product) 排序合并连接(Sort Merge Join) 排序合并连接是将连接的两个表使用连接列排 ...
分类:
其他好文 时间:
2021-02-09 12:42:10
阅读次数:
0
常用命令git branch # 查看分支列表git checkout -b newBranch # 新建newBranch 分支并切换到新分支git checkout master # 切换到master分支git branch -m newBranchName # 重命名当前分支为newBran ...
分类:
其他好文 时间:
2021-02-09 11:55:09
阅读次数:
0
类似cf582E,先建出表达式树,然后树形dp+离散+min和max卷积的优化,复杂度为$o(nm|E|)$,无法通过 考虑我们仅关心于这$n$个数的大小关系,具体来说,假设给出的数组是$a_{i,j}$(其中$0\le i<m,1\le j\le n$),对于某一个$j$,将$a_{i,j}$从小 ...
分类:
其他好文 时间:
2021-02-08 11:56:15
阅读次数:
0
Input: intervals = [[1,3],[2,6],[8,10],[15,18]] Output: [[1,6],[8,10],[15,18]] Explanation: Since intervals [1,3] and [2,6] overlaps, merge them into ...
分类:
其他好文 时间:
2021-01-25 11:29:04
阅读次数:
0
Merge Sorted Array (E) 题目 Given two sorted integer arrays nums1 and nums2, merge nums2 into nums1 as one sorted array. Note: The number of elements in ...
分类:
其他好文 时间:
2021-01-13 11:10:22
阅读次数:
0
ls -a : 可以查看到当前目录下所隐藏的文件,比如 .git文件夹 .git 目录是本地仓库 git config :来配置 git .gitignore : 创建这个文件,里面填写不需要提交到git的文件名,就可以不提交 git init : 会创建.git目录 git add (路径) xx ...
分类:
其他好文 时间:
2021-01-11 10:47:32
阅读次数:
0
import os import pandas as pd # 合并两个excel到一个excel的不同sheet def merge_excel(p_path, s_path, m_path): writer = pd.ExcelWriter(m_path) if os.path.isfile(p ...
分类:
其他好文 时间:
2021-01-08 11:37:17
阅读次数:
0