Skip to content

ahmedalaminn/VIP-BiblioTECH

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VIP-BiblioTECH

Git Command Guide

Cloning the Repository

To download the repository onto your computer, run:

git clone https://github.gatech.edu/aalamin3/VIP-BiblioTECH

Then, initialize the local repository:

git init

Pulling Changes from the Cloud

Before making any changes, always pull the latest updates:

git pull

Pushing Your Changes

  1. 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.

  2. Commit Your Changes
    Add a commit message describing your changes:

    git commit -m "Your descriptive commit message here"
  3. Push to the Cloud
    Finally, push your changes to the repository:

    git push origin main

    Your changes should now be available on the cloud!

Additional Notes

  • 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! 🚀

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published