git submodule TL;DR

简单又基础的Git Submodules的TLDR。上次在用hugo的时候碰到了git submodules的部分,完全是碰到知识盲区了,在这边简单记录一下git submodules的几种使用场景和用法。

💡 阅读更多

一个git简单cheatsheet

一个简单的git使用方法记录,主要是每次想回滚之类的操作时候都想不起命令…

git config

1
2
3
4
5
6
7
8
9
10
11
12
git config --global user.name "loser"
git config --global user.email "[email protected]"
git config --global credential.helper store

查看:
git config --global --list
git config --global user.name
git config --global user.email

参数:(Local)
--global 全局配置,对所有仓库生效
--system 系统配置,对所有用户生效
💡 阅读更多
Your browser is out-of-date!

Update your browser to view this website correctly.&npsb;Update my browser now

×