Skip to content

fkucukkara/awesome-git

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

🚀 AwesomeGIT

A comprehensive, beginner-to-advanced educational repository for learning Git and Git commands.

License: MIT


📖 Table of Contents

🟢 Getting Started

🔵 Basic Commands

🟡 Intermediate

🔴 Advanced

🔷 Workflows

📋 Quick Reference


🎯 Who Is This For?

  • Beginners who want to learn Git from scratch
  • Intermediate developers looking to deepen their Git knowledge
  • Advanced users seeking to master complex Git operations
  • Teams wanting a reference for Git workflows and best practices

🚦 How to Use This Repository

  1. Start from the beginning if you're new to Git — follow the Getting Started section
  2. Jump to specific topics if you need help with particular commands
  3. Use the cheatsheets for quick reference during your daily work
  4. Practice the commands in a test repository to build muscle memory

💡 Quick Start

# Check if Git is installed
git --version

# Configure your identity
git config --global user.name "Your Name"
git config --global user.email "your.email@example.com"

# Create your first repository
mkdir my-project
cd my-project
git init

# Make your first commit
echo "# My Project" > README.md
git add README.md
git commit -m "Initial commit"

📄 License

This project is licensed under the MIT License - see the LICENSE file for details.

About

A comprehensive, beginner-to-advanced educational repository for learning Git and Git commands.

Topics

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors