随笔分类 - git
摘要:# Data Model The following pseudo code can explain the git data model clearly. Firstly, we will talk about the three models in git. ``` // a file is a
阅读全文
摘要:git config 配置 查看所有配置: git config --list 查看系统级别配置: git config --system --list 查看全局级别配置: git config --global --list 查看仓库级别配置: git config --local --list
阅读全文