DEV Community

Cover image for Getting Started with Git and GitHub: A Beginner's Guide
Kiran Naragund
Kiran Naragund

Posted on

Getting Started with Git and GitHub: A Beginner's Guide

Hello Devs!!
If you're just stepping into the world of coding, you've probably heard about Git and GitHub. But what exactly are they, and how can they make your coding journey smoother? In this guide, we'll walk through the basics, using everyday examples to help you grasp the concepts. Let's get started🚀

What is Git?

Imagine a Time Machine for Code

Git is like a time machine for your code. Let's say you're working on a project, and you want to try out a new feature. Instead of making changes directly to your original code and risking a mess, Git lets you create a snapshot, like taking a photo of your project at that moment.

Here's the cool part: If things go wrong, you can easily go back to the snapshot, just like undoing your mistakes in a video game. This way, your code is always safe, and you can experiment without fear.

Basic Git Commands

  • git init: Setting up your time machine

To start using Git in a project, you need to initialize it. It's like telling Git, "Hey, this folder is a place where I want to use your time-traveling powers."

git init
Enter fullscreen mode Exit fullscreen mode
  • git add: Staging your changes

Imagine you're packing for a trip. Before putting everything in your suitcase, you lay out the items you want to take. git add is like laying out your code changes, getting them ready to be saved.

git add filename
Enter fullscreen mode Exit fullscreen mode
  • git commit: Taking a snapshot

After laying out your changes, you 'commit' them, which is like taking a snapshot of your code at that moment. You're saying, "This is how I want things to be saved in history."

git commit -m "A brief message describing the changes"
Enter fullscreen mode Exit fullscreen mode
  • git status: Checking the Lay of the Land

Sometimes, it's good to know what's going on in your project. git status shows you which files are modified, which are staged, and which ones are ready to be committed.

git status
Enter fullscreen mode Exit fullscreen mode
  • git log: Checking Your Time-Travel Journal

Curious about the history of your project? git log displays a list of all your past commits, like reading a journal of your coding adventures.

git log
Enter fullscreen mode Exit fullscreen mode
  • git branch: Creating Parallel Universes

Suppose you want to work on a new feature without affecting the main project. git branch helps you create a separate 'branch' where you can experiment freely.

git branch branch_name
Enter fullscreen mode Exit fullscreen mode
  • git merge: Bringing Universes Together

After working on a separate branch, you might want to merge your changes back into the main project. git merge helps combine different branches, like merging storylines in a book.

git merge branch_name
Enter fullscreen mode Exit fullscreen mode

You can get all the commands here: https://git-scm.com/docs

What is GitHub?

Imagine a Global Collaboration Hub

Now, what if you want to work on a project with friends or share your code with the world? That's where GitHub comes in. GitHub is like a central hub where people can collaborate on code, share their work, and even contribute to each other's projects.

Basic GitHub Actions

  • Creating a Repository: Your Online Project Space

A repository is like a project folder on GitHub. It's a place where your code lives and where others can see, use, and contribute to it. On GitHub, click the "+," then "New Repository."

  • Forking a Repository: Making a Copy for Yourself

Forking is like making your own copy of someone else's project on GitHub. It's a way of saying, "I want to contribute to this project or use it for my purposes." You can find the 'Fork' button on the top right of a GitHub repository.

  • Pull Request: Proposing Changes to a Project

Once you've made changes to your forked repository, you can propose those changes to the original project using a 'Pull Request' (PR). It's like suggesting edits to a document for review.

  • Issues: Discussing and Tracking Problems

If you encounter problems with a project or want to suggest improvements, you can open an 'Issue' on GitHub. It's like leaving a note for the project owner and the community.

  • Cloning a Repository: Bringing the Project to Your Computer

Cloning a repository is like downloading a project to your computer. It's saying, "I want to work on this project locally." You can find the repository URL on GitHub.

git clone repository_url
Enter fullscreen mode Exit fullscreen mode
  • Pushing Changes: Sharing Your Work

Once you've made changes to your local code and want to share them on GitHub, you 'push' your changes. It's like uploading your latest snapshot to the central hub.

git push origin main
Enter fullscreen mode Exit fullscreen mode
  • Pulling Changes: Getting the Latest Updates

If others have made changes to the project on GitHub, you 'pull' those changes to your local code. It's like grabbing the latest version of a group project.

git pull origin main
Enter fullscreen mode Exit fullscreen mode

To Explore more visit here: GitHub Training

Conclusion

Think of Git and GitHub as essential tools in your coding toolbox. Git helps you manage your code history, while GitHub opens the door to collaboration. Embrace them, and you'll find coding becomes not just a solo adventure but a community-driven journey.

If you're feeling adventurous and want to contribute to real projects, feel free to visit my GitHub profile. You can open a 'good first issue' and submit a Pull Request to get hands-on experience in the world of collaborative coding.

Thank you for reading❤

Top comments (0)