ARTCVTraining - Satvick was here

Overview of basic Git Onboarding

  1. What is a repository? Source control?
  2. Installing Git and registering for Github
  3. Cloning a repository
git clone https://github.com/Ammar-V/ARTCVTraining.git
  1. What are commits?
    1. Adding files to a commit
    git add "file_dir"
    
    1. Checking what which changes are staged
    git status
    
    1. Creating a commit
    git commit -m "commit message"
    
  2. Pushing to the repository
git push
  1. Pulling changes from the repository
git pull