1. Basics: Understanding Git and Version Control

What is Git?

Install Git

Download and install Git from: https://git-scm.com


2. Initial Setup

Code Example: Configure Git

# Set global username and email
git config --global user.name "Your Name"
git config --global user.email "[email protected]"

# Verify configuration
git config --list

Key Concepts


3. Creating a Repository

Code Example: Create and Initialize a Repository

# Create a folder for your project
mkdir my-project
cd my-project

# Initialize a Git repository
git init

Key Concepts


4. Tracking Changes

Code Example: Add and Commit Files

# Add a new file
echo "Hello, Git!" > hello.txt

# Stage the file (add it to the commit)
git add hello.txt

# Commit the file with a message
git commit -m "Initial commit"

Key Concepts


5. Check Status and Logs

Code Example: Status and History

# Check the status of your repository
git status

# View commit history
git log

Key Concepts


6. Branching

Code Example: Create and Switch Branches

# Create a new branch
git branch feature-branch

# Switch to the new branch
git checkout feature-branch

# Create and switch in one command
git checkout -b new-branch

Key Concepts


7. Merging Branches

Code Example: Merge Changes

# Switch to the main branch
git checkout main

# Merge the feature branch into main
git merge feature-branch

Key Concepts


8. Working with Remote Repositories

Code Example: Connect to Remote and Push

# Add a remote repository
git remote add origin https://github.com/username/repository.git

# Push changes to the remote repository
git push -u origin main

Key Concepts


9. Pulling Changes

Code Example: Fetch and Pull

# Pull changes from the remote repository
git pull origin main

Key Concepts


10. Cloning a Repository

Code Example: Clone a Remote Repository

# Clone an existing repository
git clone https://github.com/username/repository.git

Key Concepts


11. Resolving Merge Conflicts

Scenario: A conflict occurs when Git cannot automatically merge changes.

Steps to Resolve Conflicts

  1. Open the conflicting file.
  2. Edit the conflict markers:
    <<<<<<< HEAD
    Your local changes
    =======
    Incoming changes from the other branch
    >>>>>>> feature-branch
    
  3. Save the file and stage it:
    git add <filename>
    
  4. Commit the resolution:
    git commit -m "Resolved merge conflict in <filename>"
    

12. Ignoring Files

Code Example: Use .gitignore

# Create a .gitignore file
touch .gitignore

# Ignore files
node_modules/
*.log
.DS_Store

Key Concepts


13. Stashing Changes

Code Example: Stash Unfinished Work

# Save your uncommitted changes
git stash

# Apply stashed changes
git stash pop

Key Concepts


14. Undoing Changes

Code Example: Undo Local Changes

# Discard unstaged changes
git checkout -- <file>

# Reset staged changes
git reset <file>

Key Concepts


15. Tags

Code Example: Tag a Commit

# Create an annotated tag
git tag -a v1.0 -m "Release version 1.0"

# Push tags to remote
git push origin v1.0

Key Concepts


16. Reverting a Commit

Code Example: Revert Changes

# Revert the last commit
git revert HEAD

Key Concepts


17. Advanced Topics

Rebasing

Rebasing rewrites commit history:

git rebase main

Interactive Rebase

Modify commits interactively:

git rebase -i HEAD~3

18. Summary of Key Commands

Command Description
git init Initialize a new repository
git add <file> Stage changes
git commit -m "message" Commit staged changes
git status Show working directory status
git log View commit history
git branch <name> Create a new branch
git checkout <branch> Switch to a branch
git merge <branch> Merge a branch
git remote add <name> URL Add a remote repository
git push Push changes to a remote repository
git pull Fetch and merge changes from remote
git clone <URL> Clone a repository

19. Best Practices

  1. Commit often with clear and descriptive messages.
  2. Use branches for new features or fixes.
  3. Avoid committing sensitive data (e.g., passwords).
  4. Use .gitignore to exclude unnecessary files.
  5. Pull changes regularly to stay in sync with the remote repository.

20. Resources

  1. Git Documentation
  2. Pro Git Book
  3. Git Cheat Sheet

21. Working with Submodules

What are Submodules?

Submodules allow you to include another Git repository as a part of your project. This is useful when you’re working with shared libraries or external repositories.

Code Example: Adding and Managing Submodules

# Add a submodule to your repository
git submodule add https://github.com/example/shared-library.git libs/shared-library

# Clone a repository with submodules
git clone --recurse-submodules https://github.com/username/repository.git

# Update all submodules
git submodule update --remote

# Initialize submodules (if cloning an existing repo)
git submodule init
git submodule update

Key Concepts


22. Cherry-Picking Commits

What is Cherry-Picking?

Cherry-picking allows you to select specific commits from one branch and apply them to another.

Code Example: Cherry-Pick a Commit

# Cherry-pick a single commit
git cherry-pick <commit-hash>

# Cherry-pick multiple commits
git cherry-pick <commit-hash1> <commit-hash2>

Key Concepts


23. Squashing Commits

What is Squashing?

Squashing combines multiple commits into one, keeping the history cleaner.

Code Example: Squash Commits Interactively

# Rebase interactively for the last 3 commits
git rebase -i HEAD~3
  1. In the editor, change pick to squash for commits you want to merge.
  2. Save and close the editor.
  3. Edit the new commit message as needed.

24. Git Blame and Annotate

What is Git Blame?

git blame identifies who last modified each line in a file.

Code Example: Using Git Blame

# Show blame for a file
git blame <filename>

Key Concepts


25. Reflog: Recovering Lost Commits

What is Git Reflog?

Reflog is a log of all actions in the repository, including references to commits that might have been “lost.”

Code Example: Recover a Commit

# View the reflog
git reflog

# Reset to a previous state
git reset --hard <reflog-hash>

Key Concepts


26. Bisecting to Find Bugs

What is Git Bisect?

git bisect is used to find the commit that introduced a bug by performing a binary search through your commit history.

Code Example: Bisect to Find a Bad Commit

# Start a bisect session
git bisect start

# Mark the current commit as bad
git bisect bad

# Mark a known good commit
git bisect good <commit-hash>

# Follow the prompts to identify the bad commit

Key Concepts


27. Git Hooks

What are Git Hooks?

Hooks allow you to execute custom scripts at different points in the Git workflow (e.g., before committing, after merging).

Code Example: Pre-Commit Hook

Create a file in .git/hooks/pre-commit:

#!/bin/sh
# A simple script to prevent commits with TODO comments
if grep -r "TODO" .; then
  echo "Error: Found TODO comments in the code!"
  exit 1
fi

Make the hook executable:

chmod +x .git/hooks/pre-commit

Key Concepts


28. Git Worktrees

What is a Worktree?

A worktree allows you to have multiple working directories associated with the same repository. This is helpful when working on multiple branches simultaneously.

Code Example: Worktrees

# Create a new worktree for a branch
git worktree add ../feature-worktree feature-branch

# List all worktrees
git worktree list

# Remove a worktree
git worktree remove ../feature-worktree

Key Concepts


29. Reset, Revert, and Checkout

Code Example: Reset Changes

# Soft reset (keep changes staged)
git reset --soft HEAD~1

# Hard reset (remove all changes)
git reset --hard HEAD~1

Revert Changes

# Revert a specific commit
git revert <commit-hash>

Checkout Specific File

# Restore a specific file to its last committed state
git checkout -- <filename>

Key Concepts


30. Git Tagging

What are Tags?

Tags are used to mark important milestones (e.g., releases).

Code Example: Creating Tags

# Annotated tag with a message
git tag -a v1.0 -m "Version 1.0 release"

# Lightweight tag
git tag v1.0-light

Push Tags to Remote

# Push all tags
git push --tags

# Push a specific tag
git push origin v1.0

Key Concepts


31. Comparing Differences

Code Example: Compare Commits

# Show differences between branches
git diff main feature-branch

# Compare two commits
git diff <commit1> <commit2>

Key Concepts


32. Aliases

Code Example: Create Shortcuts

# Set up a custom alias
git config --global alias.co checkout
git config --global alias.ci commit
git config --global alias.br branch

# Use the alias
git co main

Key Concepts


33. Summary of Best Practices

  1. Commit often: Keep commits small, logical, and meaningful.
  2. Write clear commit messages: Follow the “subject + body” structure.
  3. Use branches: Separate features, fixes, and experiments.
  4. Clean history: Use squash and rebase for a tidy history.
  5. Avoid force pushes: Only use git push --force when absolutely necessary.
  6. Backup regularly: Use remotes like GitHub/GitLab for redundancy.

34. Additional Resources

  1. Official Git Documentation: https://git-scm.com/doc
  2. GitHub Learning Lab: https://lab.github.com
  3. Interactive Git Tutorial: https://learngitbranching.js.org
  4. Pro Git Book: https://git-scm.com/book