是因为和关掉的提交对应的Change_id一样导致的。 另一种可能是cherry-pick导致的: 之前提交的时候因为有merge,所以在gerrit服务器上审核的时候,我给abandoned了,因此从新处理提交的时候就出现了相同的tree, parent, author, committer以及l ...
分类:
其他好文 时间:
2018-09-01 20:34:01
阅读次数:
528
"375. Guess Number Higher or Lower II" Description We are playing the Guess Game. The game is as follows: I pick a number from 1 to n. You have to gue ...
分类:
编程语言 时间:
2018-08-26 12:03:35
阅读次数:
131
传送门 Pick定理 定点坐标为整点的三角形,面积为S,边上的整点个数为L,三角形内部整点个数为N S=N+L/2-1 1 //Achen 2 #include<algorithm> 3 #include<iostream> 4 #include<cstring> 5 #include<cstdli ...
分类:
其他好文 时间:
2018-08-21 19:46:38
阅读次数:
164
git cherry-pick是干啥的? 答:例如,假设我们有分支v1.0,还有分支v2.0,我们不直接把两个分支合并,这样会导致稳定版本混乱! 但是又想增加一个v2.0中的功能到v1.0中,这里就可以使用cherry-pick了。 语法:git cherry-pick <commit id> 注意 ...
分类:
其他好文 时间:
2018-08-17 14:22:44
阅读次数:
213
Problem Description There is an apple tree in front of Taotao's house. When autumn comes, n apples on the tree ripen, and Taotao will go to pick these ...
分类:
移动开发 时间:
2018-08-16 21:02:19
阅读次数:
223
零售行业正成为AI落地的新风口。 AI对零售业提高运营效率、降低成本、提高消费体验等方面发挥了重要作用,也为新零售打开了更大的想象空间。 从Amazon、BAT这样的互联网企业,再到Walmart这样的传统线下零售巨头,纷纷布局。但是,目前阶段的零售场景下,仍然有许多问题亟待解决。 2018 BOT ...
分类:
其他好文 时间:
2018-08-16 16:34:46
阅读次数:
151
Description Running a taxi station is not all that simple. Apart from the obvious demand for a centralised coordination of the cabs in order to pick u ...
分类:
其他好文 时间:
2018-08-03 19:53:59
阅读次数:
151
合并多个commit 1、三个commit合并 git rebase -i commit_id 其中,-i 的参数是不需要合并的 commit 的 hash 值,这里指的是第一条 commit, 接着我们就进入到 vi 的编辑模式 2、pick 和 squash 选择 pick 的意思是要会执行这个 ...
分类:
其他好文 时间:
2018-08-03 11:29:20
阅读次数:
1221
问题 B: Harvest of Apples 题目描述 There are n apples on a tree, numbered from 1 to n.Count the number of ways to pick at most m apples. 输入 The first line o ...
分类:
移动开发 时间:
2018-08-02 12:25:11
阅读次数:
184
Problem B. Harvest of Apples Problem Description There are $n$ apples on a tree, numbered from $1$ to $n$.Count the number of ways to pick at most $m$ ...
分类:
移动开发 时间:
2018-08-01 22:12:33
阅读次数:
213