Skip to main content

  • man Linux Command

    man command in Linux provides detailed documentation for any command, helping you understand its usage and options.

    Apoorva VermaApoorva Verma
  • 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
  • Set Environment Variable in Linux

    Environment variables in Linux are dynamic values used by the system and applications to configure settings. You can set them temporarily for the current session or permanently by adding them to profile files like .bashrc/.zshrc

    Apoorva VermaApoorva Verma
  • Comments in Bash

    In Bash scripting, comments play a crucial role in enhancing code readability and maintainability. These annotations help developers explain and document their scripts for future reference.

    Apoorva VermaApoorva Verma
  • What is Bash?

    Bash (Bourne Again Shell) is a command-line interface (CLI) used for executing text-based commands in Linux. It's the default shell for most Linux distributions and supports powerful scripting.

    Apoorva VermaApoorva Verma