Github使用记录 配置Git $ ssh-keygen -t rsa -C "your_email@youremail.com" 改为自己的name和地址,继续回车,默认路径和密码,继续回车,生成.ssh,打开id_rsa.pub,复制key到github的setting中。 $ ssh -T ...
分类:
其他好文 时间:
2020-11-25 12:05:08
阅读次数:
7
链表类依赖于cmath头文件,使用ListNode,List四个文件实现: ListNode.h: 1 /********************************************* 2 ListNode.h 3 链表节点(模板)类 ListNode 4 T 节点数据 5 pred 前 ...
分类:
其他好文 时间:
2020-11-12 14:13:56
阅读次数:
5
git fetch, git pull, git pull -rebase区别 抄经的和尚 2016-04-20 13:51:32 15084 收藏 9 分类专栏: 技术总结 文章标签: git pull git rebase git merge 1、git fetch vs git pull 都是 ...
分类:
其他好文 时间:
2020-11-10 11:42:33
阅读次数:
29
# 放弃merger master到mzhuo分支的代码,甚至之后新提交的代码也放弃(最终git上没有操作记录) # 前期进入分支操作 1 cd Documents/Yv/ 2 ls 3 git status 4 git pull origin 5 git branch 6 git checkout ...
分类:
其他好文 时间:
2020-11-07 16:25:13
阅读次数:
19
1、 生成publicKey和password 找到maven资源库中druid的jar包,如:C:\Users\a\.m2\repository\com\alibaba\druid\1.1.6,其中a为用户名。 打开cmd,将路径切换至C:\Users\a\.m2\repository\com\a ...
分类:
数据库 时间:
2020-11-06 02:10:35
阅读次数:
32
指令 提前配置 查看当前版本:git --version 查看git配置信息:git config --list 配置提交人姓名:git config --global user.name 你的姓名 配置提交人邮箱:git config --global user.email 你的邮箱 提交步骤 初 ...
分类:
其他好文 时间:
2020-11-04 19:13:54
阅读次数:
21
oracle常用经典SQL查询 常用SQL查询: 1、查看表空间的名称及大小 select t.tablespace_name, round(sum(bytes/(1024*1024)),0) ts_size from dba_tablespaces t, dba_data_files d wher ...
分类:
数据库 时间:
2020-10-30 13:16:35
阅读次数:
36
题目 Re-see 特别喜欢柠檬。 Re-see 一共采了 n 个柠檬。一开始每个柠檬自成一堆。之后她又做了 Q 次操 作 1 x y:Re-see 觉得不够酸爽,决定把第 x 个柠檬和第 y 个柠檬所在的柠檬 堆合并 特别的,如果 x,y 本来就在一堆里,那么什么也不做 2 a b:Re-see ...
分类:
其他好文 时间:
2020-10-26 10:55:31
阅读次数:
17
// Window large lists with react-virtual // http://localhost:3000/isolated/final/04.js import React from 'react' import {useVirtual} from 'react-virtu ...
分类:
其他好文 时间:
2020-10-24 11:42:42
阅读次数:
24