To download the repository onto your computer, run:
git clone https://github.gatech.edu/aalamin3/VIP-BiblioTECH
Then, initialize the local repository:
git init
Before making any changes, always pull the latest updates:
git pull
-
Stage Your Changes
- Stage all changes:
git add .
- Stage specific files:
git add example1.txt example2.java
⚠ Important: Always pull the latest changes (
git pull
) before adding files to avoid merge conflicts. - Stage all changes:
-
Commit Your Changes
Add a commit message describing your changes:git commit -m "Your descriptive commit message here"
-
Push to the Cloud
Finally, push your changes to the repository:git push origin main
Your changes should now be available on the cloud!
- The first time you push changes, Git may prompt you to log in. Use your Georgia Tech GitHub login.
- Check out this helpful guide if you need more help: Git Guide
- You can also use the following command to access Git's built-in help documentation:
git --help
If you need any help, feel free to reach out to me! 🚀