#git
Read more stories on Hashnode
Articles with this tag
Centralized Workflow AKA Everyone Works On Master/Main AKA The Most Basic Workflow Possible The simplest collaborative workflow is to have everyone...
How Cloning Works After cloning there will be two branch references: A regular branch reference that I can move around myself.(the default branch of...
Checkout The git checkout command is like a Git Swiss Army knife. Many developers think it is overloaded, which is what lead to the addition of the...
Git Diff We can use the git diff command to view changes between commits, branches, files, our working directory, and more! We often use git diff...
Context On large projects, we often work in multiple contexts: You're working on 2 different color scheme variations for your website at the same...
Repository A Git "Repo" is a workspace which tracks and manages files within a folder. Anytime we want to use Git with a project, app, etc we need...