PLATFORM
  • Tails

    Create websites with TailwindCSS

  • Wave

    Start building the next great SAAS

  • Pines

    Alpine & Tailwind UI Library

  • Auth

    Plug'n Play Authentication for Laravel

  • Designer comingsoon

    Create website designs with AI

  • DevBlog comingsoon

    Blog platform for developers

  • Static

    Build a simple static website

  • SaaS Adventure

    21-day program to build a SAAS

Written By
Views

Git: Renaming a Branch

Git: Renaming a Branch

Git branches are an easy way to manage our code, and separate our copies of our code when we want to work on specific features. We can then merge our code back into our main branch, or even rebase it.

Sometimes, though we make a mistake in the naming of our branch. Maybe you wrote fea-ui-design instead of feat-ui-design, or maybe you just want to rename your branch completely. Fortunately, it's easy to rename a branch. First switch to the branch you want to rename using checkout:

git checkout my-branch

And then use the -m option on branch to rename it.

git branch -m new-branch

Now my-branch has been renamed to new-branch - it's as easy as that!

Comments (0)

loading comments