README git-learning git全局设置用户名跟邮箱 git全局设置用户名跟邮箱,基本操作一次以后很少再变化。 设置全局用户名,xxx替换为用户名 1git config --global user.name "xxx" 设置全局用户邮箱,xxx替换为用户邮箱 1git config --global user.email "xxx" git全局设置用户名 2023-04-21 git #git
github-pages github-pages https://fluid-dev.github.io/hexo-fluid-docs/start/ [Hexo博客搭建]第4章Hexo图片显示问题-知乎(zhihu.com) Hexo功能增强插件-西西弗苏- SegmentFault思否 更换Hexo的网页图标/小图片Hexo change page favicon blog-dev/_config.fluid.yml 2023-04-21 git #git #Hexo
gerrit gerrit 提交模板 在 ~/ 目录下新建文件,并命名为.gitcommit_template 将以下内容写入文件当中: 1234567891011121314151617#commit type :fix(问题修复)、feat(功能开发)、style(风格修改)、refactor(重构)、docs(文档)、 chore(其他)、test(测试) + 简单描述. 默认fix,根据情况修改fix: 2023-04-21 git #git
submodule git submodules 更新 submodule 自动初始化并更新仓库中的每一个子模块, 包括可能存在的嵌套子模块。 方式1 1git clone --recurse-submodules https://github.com/realwujing/linux-learning.git 方式2 12git clone https://github.com/realwujing/linux 2023-04-21 git #Linux #git #assembly #linux #HTML
java-learning Java https://snailclimb.gitee.io/javaguide/#/ JavaGuide CyC2018/CS-Notes: 技术面试必备基础知识、Leetcode、计算机操作系统、计算机网络、系统设计 (github.com) 史上最全的Java命名规范[转] - 云+社区 - 腾讯云 (tencent.com) Java环境 Ubuntu18.04安装jdk1.8 2023-04-21 java #Linux #C++ #git #linux #HTML #Java
README GDB查看C++对象布局_tmhanks的博客-CSDN博客 123456789101112131415161718GDB查看对象如下:(gdb) set print object on(gdb) set print vtbl on(gdb) set print pretty on((gdb) p base$7 = (Base) {_vptr.Base = 0x403a50 <vt 2023-04-21 cpp > C++对象的内存布局 #C++