Top Git Commands and Tutorial
Introduction to Git and GitHub
Git is a powerful distributed version control system that allows developers to track changes made to their codebase over time. GitHub, on the other hand, is a web-based hosting service for Git repositories, providing a user-friendly interface and collaboration tools for teams working on projects together.
Git provides a robust set of features for managing and collaborating on code, including branching, merging, and distributed workflows. It allows multiple developers to work on the same codebase simultaneously, while keeping track of changes and preventing conflicts.
Getting Started with Git
-
git init
Initializes a new Git repository in the current directory. This command creates a hidden `.git` folder that contains all the repository data.
-
git clone
Creates a local copy of a remote repository on your machine.
git clone <repository-url>
This command downloads the entire repository from the specified URL, including all files, branches, and commit history.
Working with Git
-
git add
Stages changes to be committed. You can add specific files or entire directories.
git add <file-name>
git add <directory-name>
-
git commit
Records changes to the repository with a descriptive message.
git commit -m "<commit-message>"
Commit messages should be clear and concise, describing the changes made in the commit.
-
git push
Uploads local repository changes to a remote repository.
git push <remote-name> <branch-name>
The `remote-name` typically refers to the remote repository URL (e.g., `origin`), and `branch-name` specifies the branch you want to push your changes to.
-
git pull
Fetches and merges changes from a remote repository into your local repository.
git pull <remote-name> <branch-name>
It's a good practice to pull changes from the remote repository before pushing your local changes to avoid conflicts.
Branching and Merging
-
git branch
Lists, creates, or deletes branches.
git branch <branch-name>
Branches allow you to work on separate features or bug fixes without affecting the main codebase (typically the `main` or `master` branch).
-
git checkout
Switches between branches or restores files.
git checkout <branch-name>
You can also use this command to create a new branch and switch to it simultaneously:
git checkout -b <new-branch-name>
-
git merge
Combines changes from one branch into another.
git merge <branch-name>
When merging branches, Git tries to automatically resolve any conflicts. If conflicts occur, you'll need to manually resolve them before completing the merge.
Additional Git Commands
git status
: Shows the current state of the working directory and staging area.git log
: Displays a log of all commits in the repository, including commit messages and author information.git diff
: Shows the differences between the current working directory and the last commit, or between two commits or branches.git reset
: Undoes changes to the staging area or committed changes, depending on the provided options.git revert
: Reverts a specific commit by creating a new commit that undoes the changes from the specified commit.
Additional Resources
- Git Documentation
- GitHub Guides
- Try Git (Interactive tutorial)
- Atlassian Git Tutorials
- Learn Git Branching (Interactive branching tutorial)