Fundamental Git workflow
Key Terms
modify-add-commit-push-pulla basic git workflow that can get you 80% of the benefits of version control.
modifyaka change files in the working directory (local computer)addchanges to a staging area which allows us to control what files to track with Gitcommitsave selected changes as a version onto our local repo (local history)pushour new local version to a remote repo (GitHub)pullsync local git repo with a remote repo