Skip to main content

Tag: GIT

  • Git Branches: List, Create, Switch to, Merge, Push, & Delete

    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.

    Apoorva VermaApoorva Verma
  • Git Add & Commit Commands

    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.

    Apoorva VermaApoorva Verma
  • Git Setup

    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.

    Apoorva VermaApoorva Verma