Skip to content

calamari99/DSCI310_ec

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

UBC_DSCI310

$$ test changes $$

  • git status: status of current changes in repo
  • git clone <URL>: one time download from git rep to local machine

Changes:

  • git add <FILE>: add the s to the staging area

  • git commit <FILE> commit changes

    • git commit -m "MESSAGE": creates the git message.
  • git push <FILE> push changes to git

    • e.g. git push origin main which sends code from branch to origin.
  • git pull <where> <what>: take remote commits on </what>, and pull from where

    • e,g, git pull origin main