Git

Git posts, videos, courses, and more

Bobby Iliev · 1 year ago

Reset Local Repository Branch to be Just Like Remote Repository HEAD: A Step-by-Step Guide

Introduction In the world of Git, it's not uncommon for developers to find themselves in a situation where their local repository has diverged from the remote repository. This can happen due...
2

Mr. Ånand · 1 year ago

Creating Personal Blog With Hugo and Netlify

In this Article! I am going to share the step-by-step method I followed while building a blog website using a static site generator Hugo and deploying it to Netlify. I encountered some small...
5

Mr. Ånand · 1 year ago

Hacktoberfest 2022: Win Swags for Quality Contributions

Hacktoberfest 2022 is ongoing and you must have started the contribution. Everyone loves swags in the developer community. Let me tell you some good opportunities to grab cool swags by addin...
5

Kaushal Joshi · 1 year ago

How to Fetch Large Data Files Through GitHub API

During my internship at Hackernoon, I had a task to fetch some files from GitHub API. Initially, I thought it'd be a simple GET request but soon I realized the work is a headache. The file I...

Rahul · 1 year ago

19 Unique Git and Github Resources for Developers

While beginning as a web developer, it tends to be not difficult to lose all sense of direction in the large number of dialects, devices and stages that are accessible in the present market....
1

Jamie Swift · 1 year ago

The best VS Code extensions to supercharge Git (yes, there’s more than GitLens!)

Yes, I know, we should all be terminal ninjas, memorizing every git command yadda yadda. Or, like the caveman, we could put two sticks together (or in this case, VS Code) and create fire (ak...
6

TechvBlogs · 2 years ago

How to change the URI (URL) for a remote Git repository?

What is Git? Git is the world's most popular distributed version control system used by many open-source and commercial projects. It allows you to collaborate on projects with your fellow de...
3

Baransel · 2 years ago

A Git Cheat Sheet

Sign up to my newsletter!. Intro When it comes to version control systems, there are few software that can beat GIT in performance and relevance. GIT was developed by Linus Torvalds in 200...

Mr. Ånand · 2 years ago

All Resources To Help You Start Your Open-Source Journey: Open Source Gallery

Do you want to start your open source journey? Don't know where to start? Difficulty in finding suitable projects according to your tech stack? Then this article is for you. In this article,...
6

Chirag · 2 years ago

How to Rename Local and Remote Git Branch

Have you ever wondered or come across a situation where you want to rename a Git branch? If yes then this article will help you with that. Earlier, I faced the same situation where I wanted...
5

Tapas Adhikary · 2 years ago

5 tips for beginners to web development

The modern era of web development is fascinating. Plenty of frameworks and libraries to keep us productive. There are thousands of quality resources to read and learn from. Apart from the pl...
5

Damian Demasi · 2 years ago

Learn how to use Git and GitHub in a team like a pro

In this tutorial, you will learn how to work in a team with a central repository on GitHub. You will work on issues, commits, pull requests, code reviews, and more. I don't consider myself a...
5

Chirag · 2 years ago

Easy way to exclude files during git add

Every day we use the "git add" command a lot to add our changes to the index for new commits, but have you ever wondered how we can add all the changed files with some files exclud...
3

Chirag · 2 years ago

Learn to push an empty commit

Today I faced a problem while triggering the delivery pipeline and this article is about the solution to that problem. Have you ever faced the need to push a commit to a Git branch without c...
4

Avneesh Agarwal · 2 years ago

My experience of Hacktoberfest 2021

I have been participating in a great and the biggest event for open source this month- Hacktoberfest! In this article, I am going to tell you how I participated and how I enjoyed this event....
4

Bobby Iliev · 2 years ago

8 Open Source Projects to Contribute to - Hacktoberfest 2021

Introduction Hacktoberfest is a month-long event where people are awarded for contributing to open source projects 🙌. In order to participate you need to sign up here and then Submit four p...
6

Raunaq · 2 years ago

How to fetch a pull request locally and test it out before merging

Introduction In this post, we'll learn how to fetch a pull request locally and test it out before merging it into our project repository. We can also make changes to it if required and push...
4

Dev Yoda · 2 years ago

How Do Git Repositories Work?

Introduction Git is an open source version control system used to take snapshots of changes in files over time and store those changes in a .git folder. The folder is called a git repository...
6

Boyan Iliev · 2 years ago

How to Undo Your Most Recent Local Commits in Git

Introduction Git is probably the most well-known and used version control system. It makes working on a single project with other developers much easier because Git tracks all the changes yo...
9

Bobby Iliev · 2 years ago

Introduction to Git and GitHub Crash Course + Giveaway ⭐

Introduction Hello everybody! Welcome to this Introduction to Git and GitHub video series, where you will learn the basics of Git and start using it for your day-to-day tasks. My name is Bob...
8

Bobby Iliev · 2 years ago

Introduction to Git and GitHub

Welcome to this Git and GitHub basics video course! In this Git crash course, you will learn the basics of Git so you can use Git to track your code changes and collaborate with other member...
15

Boyan Iliev · 2 years ago

How To Write A Good README File

Introduction If you're familiar with GitHub, then you know what a README file is. But if you don't know what it is, you can think of it as the introduction to your repository. It's very help...
10

Jono · 3 years ago

4 Must-Have Tools for Developing on Windows

No I am not talking about those apps, the ones everyone probably already has installed. The VSCodes, the VIMs, the Postmans. Nor am I talking about any of those environments that you only us...
2

Bobby Iliev · 3 years ago

Top 18 Git commands that you should know

Introduction Git is without a doubt the most popular version control system for tracking changes in source code out there. The original author of git is Linus Torvalds who is also the creato...
8

Bobby Iliev · 3 years ago

How to squash multiple commits into one with Git?

Introduction Git is a huge reason why the web dev community is so awesome. You can join an open-source project and add some amazing stuff to it. By committing your code and pushing it, you c...
8

Bobby Iliev · 3 years ago

Here is why you should not be too quick at judging people by their GitHub activity stats

Introduction I am a supporter of the opensource movement and I truly admire people like Eddie Jaoude, Matt Cowley and all other open-source maintainers who work hard every day so that we cou...
11

Bobby Iliev · 3 years ago

Getting started with Git

Introduction Whether you are a newcomer to programming, or an experienced one, you have to know how to use Git. Most of the projects that a small or big group of developers work on are done...
9

Aman Jaswal · 3 years ago

Git Command Introduction

Learning the Git commands can significantly increase your productivity. In this tutorial I'm going to show and explain to you some of the most common git commands, and commands you should pr...
7

Bobby Iliev · 3 years ago

What is GitHub CLI and how to get started?

Introduction The GitHub CLI or gh is basically GitHub on command-line. You can interact with your GitHub account directly through your command line and manage things like pull requests, issu...
11

Bobby Iliev · 3 years ago

How to exclude files from your Git project using .gitignore?

Introduction If you are using git along with Github, Gitlab for example, you need to make sure that you do not include any sensitive information to your repositories like passwords or secret...
8

Loading More Content