This repository contains documentation for all systems used within our organization.
This is a central location for storing and maintaining documentation for all our internal systems. Each system has its own dedicated folder containing documentation.
-
Clone this repository:
git clone https://github.com/icpac-igad/Systems_documentation.git -
Navigate to the system you're interested in:
cd Systems_documentation/system-name -
View the documentation
-
Clone the repository:
git clone https://github.com/icpac-igad/Systems_documentation.git -
Check if a folder for your system already exists. If not, create one:
cd Systems_documentation # Check if folder exists ls # Create folder if it doesn't exist mkdir system-name -
Add your markdown documentation files inside that folder:
cd system-name create or upload documentation for your system (.docx,.pdf,.md) -
Commit and push your changes:
git add . git commit -m "Add documentation for system-name" git push origin main -
Create a pull request for review.
If you need to add documentation for a system that already has a folder:
- Navigate to the system folder:
cd Systems_documentation/existing-system-name open the documentation (.md,.pdf,.docx) using your favorite editor, make changes and push
Systems_documentation/
├── system-a/
│ ├── documentation.md
├── system-b/
│ └── documentation.md
└── README.md (this file)
Each system folder should contain a file (.docx,.pdf,.md) files with appropriate documentation.