Git 3 ways to make better pull request descriptions A pull request, aka merge request, is crucial in the git workflow when working on a team. If your project has CI/CD setup, it is usually the piece that needs to be merged to trigger code to production. This post outlines three ways to make your pull request descriptions better.
Developer Tools Git Tags - What are they and why you should use them. Git tags allow developers to create check points in the code base. Something that gets tagged a lot are releases. List of tags for MyWheelsThe two types of tags and how to make them There are two types of tags, lightweight and annotated tags. A lightweight tag is a pointer
Git GIT GUI vs Command Line In the past couple of posts, I’ve been using the command line to interact with Git, but you don’t have to do that! You can actually use an application to do git commands. If you haven’t guessed it by now, today, we are going to talk about
Developer Tools The Git-ing Tree: Git Branching and Merging Strategies Hey yall! Let’s grab a cup of coffee or whatever your beverage of choice is and talk about git branches and merging. What is a branch? A branch is the area where edits and commits are stored. If you watched my last video [https://youtu.be/4KwLqLXGPn8] about git