Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 421 Bytes

README.md

File metadata and controls

25 lines (19 loc) · 421 Bytes

shell-script-collection

My collection of useful shell scripts (references to other repos).

How to use

Install: git clone --recursive <this repo url>

Update: git pull --recurse-submodules

How to modify

Adding a submodule: git submodule add <repository_url> <local_directory_name>

Updating a submodule:

cd <submodule>
git checkout main
git pull
cd ..
git commit <submodule>
git push