git submodule: already exists in the index
在 github 上面 clone 一个包含有 submodule 的 repo 的时候,用如下命令更新 submodule:
git submodule update --remote --merge
一直没法更新,尝试重新 add submodule,比如:
git submodule add https://github.com/cisco/openh264 open_source_code/openh264
一直报如下错误:
‘open_source_code/openh264’ already exists in the index
执行如下命令,解决此问题:
git rm -r --cached open_source_code/openh264
foreach java list 位空 java中listnode
LinkedList详解1、简介LinkedList是一个双向链表,允许null元素存储,内部是使用Node节点来相互链接的,每个Node节点都有一个向前指针、向后指针和当前存储元素,详细代码如下:private static class Node<E> {
E item;//当前存储元素
Node<E> next;//后一个节点指针