Git Git: Renaming a Branch Renaming a branch can be accomplished with the git branch command. Let's look at how it works.
↔️ Git Merge: Merging Changes from other Branches Git Git merges are an important part of collaborating with git and managing branches. Let's look at how it works.
🕊 A Step by Step Guide to Git Branches Git Git branches let us manage new features, bug fixes, and testing, separate from our main code. Let's look at how they work.
🙅 Resolving Git Merge Conflicts Git Git merge conflicts are an inevitable part of working with Git. Let's look at how you can resolve them in terminal or by GUI.
The Complete Beginners Guide to Getting Started with Git Git Git can be daunting to understand since it is completely driven from the terminal, but at its core it's just version management software. Let's learn how it works.
Git Stash - Everything about stashing changes in git Git We use git stash all the time, but in this guide I'll be showing you everything you need to know about git stash.
How to undo a git pull Git Sometimes we make mistakes an fire a git pull we shouldn't have. Let's look at how to undo it with git.
How to make Git ignore file permission (chmod) changes Git Sometimes you do not want to upload files to your repository which have had their chmod or file permissions updated. Let's look at how to do that.
Git blame - How to find out who modified a line with Git Git Sometimes a single line breaks your code, and you want to find the perpetrator. Fortunately, git has a command for that.
Using Git to see recent changes in specified a time period Git Sometimes you need to see recent changes in Git. Let's look at how to do that.
How to amend and update a git commit Git Sometimes you make a change in your git commit message, or the files you included, and you want to make a change. Let's look at how to do that.
How to force overwrite local changes with 'git pull' Git Sometimes git doesn't allow us to do a git pull because it will overwrite local changes. In this guide I'll show you how to force a git pull