Git Create & Add SSH
How to Create & Add SSH for Git

How to Create & Add SSH for Git
Git branches allow you to work on a project in isolation without affecting the main codebase. By creating, switching, and merging branches, developers can manage features or fixes independently. Once the work is done, branches can be merged back into the main project or deleted.
The `git add` command moves changes from the working directory to the staging area. Once staged, `git commit` saves these changes permanently to the repository with a descriptive message.
To get started with Git, download it from the official site and verify the installation by checking the version. After configuring your user details with git config, you can create a project directory, initialize Git, and track changes.