Search⌘ K
AI Features

A Worked Example

Explore the use of Git submodules by following a detailed example involving branching and code sharing. Understand how submodules help manage dependencies across repositories, enabling smoother collaboration and better project organization.

Maintainer

Let’s say Alice maintains a library:

1	mkdir -p lgthw_submodules
2	cd lgthw_submodules
3	mkdir alicelib
4	cd alicelib
5	git init
6	echo 'A' > file1
7	git add file1
8	git commit -am 'A'
9	git checkout -b experimental      # Branch to
...