Code Environments

Code environment basic and required setup for your project or new machine.

Version Control Setup Guide

Git

Distributed version control system for tracking changes in source code

Installation

brew install git  # For macOS
apt-get install git  # For Ubuntu/Debian
choco install git  # For Windows

Setup Commands

git config --global user.name "Your Name"git config --global user.email "your.email@example.com"git config --global core.editor "code --wait" # For VS Codegit config --list # Verify settings
Official Documentation →

GitHub CLI

Command-line tool for interacting with GitHub from your terminal

Installation

brew install gh  # For macOS
apt-get install gh  # For Ubuntu/Debian
choco install gh  # For Windows

Setup Commands

gh auth login # Authenticate with GitHubgh config set editor "code --wait" # Set default editor
Official Documentation →