status-web
status-web copied to clipboard
Add `status-software-legal-documents` as a Git Submodule in `status-web`
-
Objective:
Add thestatus-software-legal-documentsrepository as a Git submodule in thestatus-webrepository to enable synchronisation of legal documents. -
Tasks:
- Navigate to the
status-webrepository:cd status-web - Add the
status-software-legal-documentsrepository as a submodule:git submodule add https://github.com/status-im/status-software-legal-documents.git path/to/legal-docs - Initialise and update the submodule:
git submodule update --init - Commit and push the changes:
git commit -am "Add legal documents submodule" git push origin <branch> - Verify the submodule integration:
- Check that the submodule directory contains the expected files.
- Confirm that
git diff --no-indexcan compare local legal files with submodule files.
- Navigate to the
-
Acceptance Criteria:
- The
status-software-legal-documentssubmodule is added and visible in the repository. - Local legal documents can be compared with the submodule files.
- The