This repo hosts materials used for presentations, including slides and diagram files.
-
Use Github's web interface to upload files directly to the appropriate team folder.
-
When you're logged in and on the main repo page, press period (.) to open the web-based editor.
-
Navigate to the desired team folder.
-
Upload the files using the VSCode web interface.
-
Commit the changes directly from the web interface.
- 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