Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
knowledge_base:programming:git [2022/12/02 15:58] – removed - external edit (Unknown date) 127.0.0.1 | knowledge_base:programming:git [2023/05/18 15:45] (current) – Normal User | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | ====== Git Distributed source repository ====== | ||
+ | |||
+ | |||
+ | < | ||
+ | $ cat .gitconfig | ||
+ | [alias] | ||
+ | hist = log --pretty=format: | ||
+ | [user] | ||
+ | email = [email protected] | ||
+ | name = George | ||
+ | </ | ||
+ | |||
+ | Use .gitignore to specify un-tracked files | ||
+ | |||
+ | https:// | ||
+ | |||
+ | https:// | ||
+ | |||
+ | https:// | ||
+ | |||
+ | ===== Git Recursive Module Resync ===== | ||
+ | |||
+ | < | ||
+ | git submodule sync --recursive && git submodule update --init --recursive | ||
+ | </ | ||