Installing and Configuring Git
Final-year BSc IT student and DevOps Engineer with strong hands-on experience in AWS and cloud-native technologies. I focus on building, deploying, and automating reliable systems using modern DevOps practices.
I have practical experience working with Docker and Kubernetes for containerization and orchestration, Terraform and Ansible for infrastructure automation, and CI/CD pipelines using Jenkins, GitHub Actions, and AWS CodePipeline. I enjoy solving real-world problems related to deployment, scalability, and system reliability.
Git Installation
1. Windows:
- Download and install Git from Git for Windows.
2. macOS:
Install Git using Homebrew:
brew install git
3. Linux:
Install Git using the package manager for your distribution:
sudo apt update && sudo apt install git # Debian/Ubuntu
sudo dnf install git # Fedora
sudo yum install git # CentOS
Verify Installation:
After installation, verify Git by running:
git --version
Configuring Git
Global Configuration:
Set your username and email globally:
git config --global user.name "Your Name"
git config --global user.email "youremail@example.com"
Check Configuration:
Verify your Git configuration:
git config --list




