Jomacs DevOps Training (July - December 2024)
Welcome to the GitHub Basics repository! This repository is designed to introduce you to the fundamentals of using GitHub for version control and collaboration. Whether you're new to GitHub or need a refresher, this guide will help you get started.
- Introduction
- Prerequisites
- Setting Up Git
- Creating a Repository
- Cloning a Repository
- Making Changes
- Committing Changes
- Pushing Changes
- Branching and Merging
- Pull Requests
- Collaborating on GitHub
- Conclusion
GitHub is a web-based platform that uses Git for version control, allowing multiple people to work on projects simultaneously. It hosts your code, tracks revisions, and facilitates collaboration. In this guide, we will cover basic GitHub commands and workflows that you can use in your development projects.
Before you begin, make sure you have the following:
- A GitHub account. If you don't have one, sign up here.
- Git installed on your local machine. You can download it from git-scm.com.
To start using Git, you need to configure your Git environment. Open your terminal and run the following commands:
git config --global user.name "Your Name"
git config --global user.email "[email protected]"