Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 627 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 627 Bytes

Cohorts

This repository keep track of the repositories of previous cohorts.

Housekeeping

Add new submodule

$ git submodule add <git_repository>

Set up submodule.recurse

$ git config --global submodule.recurse true

Recursively update all submodules

$ git pull --recurse-submodules

Effectively delete submodule Link

  • $ git submodule deinit <path_to_submodule>
  • $ git rm <path_to_submodule>
  • $ git commit-m "Removed submodule"
  • $ rm -rf .git/modules/<path_to_submodule>

TO DO

Set up weekly build to automatically update all submodules