NNoviceDevinnovicedev.hashnode.dev·Jan 26, 2023 · 2 min readHow to UPDATE HOMEBREW on Mac?Are you looking to update your Homebrew and its packages on your mac? It's an easy process and can be done in just 2 steps. Step 1: Brew update First, open up your terminal and type in the following command: "**brew update". This will update the home...00
NNoviceDevinnovicedev.hashnode.dev·Sep 17, 2022 · 2 min readCreate GIT Branch from a CommitUsually, a branch is created from another branch which is the latest HEAD commit of the branch. But what if you want to create a branch from a previous commit HEAD? GIT branch can be created with a commit hash using the ‘git checkout’ command with ‘-...00
NNoviceDevinnovicedev.hashnode.dev·Jan 30, 2022 · 3 min readHow to rename git branch?Made a small mistake while naming your git branch, don't panic this blog post will go through all the possibilities for renaming the git branch on local and remote. Git branch can be renamed with a simple command "git branch -m ", this will rename y...01G