PowerShell Wednesday Git 101 This article provides a concise reference guide for essential Git commands, covering repository initialization, file tracking, committing, and remote setup. It also explains branching operations, including creation, switching, and deletion, as well as how to fetch and pull changes from a remote repository. Additionally, the guide clarifies that a Pull Request (PR) is functionally a "Merge Request," as used by platforms like GitLab. Initialize a Git directory as a repository. git init Track files with Git A.K.A. Git now knows and cares about these files git add