Git Setup and Initialization on Windows


LearnAzureDevOps-O5

Git Setup and Initialization on Windows

To set up Git on a Windows machine, follow these steps:

Step 1: Install Git

  1. Download Git:

  2. Install Git:

    • Run the downloaded installer.

    • Follow the installation steps:

      • Choose the default editor (e.g., Nano or VS Code).

      • Adjust your PATH environment:

        • Select "Git from the command line and also from 3rd-party software."

      • Configure line-ending conversions:

        • Choose "Checkout Windows-style, commit Unix-style line endings."

      • Finish the setup with the recommended defaults.

  3. Verify Git Installation: Open a terminal (Command Prompt or Git Bash) and run:

Step 2: Configure Git

Once installed, configure Git with your user information.

  1. Set Your Name:

  2. Set Your Email:

  3. Check Configuration:

Step 3: Generate SSH Key (Optional for Remote Repositories)

To authenticate with services like GitHub, Azure DevOps, or GitLab using SSH:

  1. Generate SSH Key:

    • Press Enter to save the key in the default location.

    • Enter a passphrase (optional).

  2. Add SSH Key to Agent:

  3. Copy SSH Key:

    This copies the public key to the clipboard.

  4. Add the SSH Key to Your Remote Repository (e.g., GitHub/Azure DevOps):

    • Go to the settings of your remote repository.

    • Add the SSH key under the SSH Keys section.

Step 4: Initialize a Git Repository

  1. Create a New Project Directory:

  2. Initialize Git:

    This creates a .git directory in your project folder to track changes.

Step 5: Optional Git Settings for Windows

  1. Set Default Branch Name: e.g., main instead of master

  2. Set Credential Manager: Windows supports Git Credential Manager, which stores credentials securely.

Step 6: Visual Studio Code Integration

  1. Install VS Code:

  2. Install Git Extension:

    • Open the Extensions view (Ctrl+Shift+X) and install the Git extension.

  3. Use Git in VS Code:

    • Open your project folder in VS Code.

    • Use the Source Control tab to stage, commit, and push changes.

Verification

  1. Run git status in the terminal to check the status of your repository.

  2. Make a simple change, add a file, and commit it:

This completes the Git setup and initialization process on Windows. Have Fun!

Related Articles


Rajnish, MCT

Leave a Reply

Your email address will not be published. Required fields are marked *


SUBSCRIBE

My newsletter for exclusive content and offers. Type email and hit Enter.

No spam ever. Unsubscribe anytime.
Read the Privacy Policy.