This repo hosts materials used for presentations, including slides and diagram files.
- Clone the repository to your local machine.
git clone https://github.com/ngcp-project/presentation-resources.git
- Create a New Folder: Each team should have its own folder.
- Add Your Files: Place your slides and diagrams in the appropriate folder.
- Install Git LFS if you haven't already.
- Initialize Git LFS in your repository:
git lfs install
- Track Large Files: If you have large files, track them with Git LFS using the following command below and adjusting for the file types you are using:
git lfs track "*.png" "*.jpg" "*.pdf"
- Commit Your Changes: Add and commit your changes.
git add .
git commit -m "Add new presentation resources"
- Push to the Repository: Push your changes to the remote repository.
git push