How to use git with the git command line:
install git on your machine
right click in a folder and open git bash
to setup your account with the command line type:
git config --global user.name "YOUR_USERNAME"
git config --global user.email "your_email_address@example.com"
to copy the repo into the folder type
"git clone https://github.com/Aparaxium/CECS277TP.git"
before you edit code always open git in the CECS277TP folder and type:
git pull
whenever you are done or taking a break open git in the CECS277TP folder and type:*
git add * (adds new folder and files created)
git commit -m "(insert messege)" (stages files to be pushed)
git push
you can also use the GUI but i have not used it and can't help with it
if you want to learn more:
https://docs.gitlab.com/ee/gitlab-basics/start-using-git.html