Skip to content

Commit

Permalink
Install Git using your package manager on linux section uses tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
devvyyxyz committed Oct 29, 2024
1 parent 32ae1c3 commit e3075d6
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions FAQ/StoringProjects.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,11 +119,19 @@ Implement Git or another VCS for tracking changes and collaborating. Here’s ho

#### Step 1: Install Git
1. Install Git using your package manager:
+++ Debian/Ubuntu
```bash
sudo apt install git # Debian/Ubuntu
sudo dnf install git # Fedora
sudo pacman -S git # Arch
sudo apt install git
```
+++ Fedora
```bash
sudo dnf install git
```
+++ Arch
```bash
sudo pacman -S git
```
+++
2. Configure Git:
```bash
git config --global user.name "Your Name"
Expand Down

0 comments on commit e3075d6

Please sign in to comment.