23 July 2021
git clone <github_url> <local_directory>To clone a repository:
change to the project directory (or use IntelliJ terminal)
git pull (gets latest changes from GitHub)
git add --all
git commmit -m "descriptive message so others know what you've done"
git push orign master (optionally you can use git push -u origin master )