How to quickly change your branch in Git – TheServerSide.com

npressfetimg-6501.png

As the Editor-in-Chief of TheServerSide, I get to monitor the search terms that drive readers to the site, and one search term that makes me wonder is ‘git branch change.’

What does ‘git branch change’ mean?

The reason the search query bothers me is that I don’t know exactly what people are searching for?

If the ‘git branch change’ search term brought you to this site, you are likely interested in one of the following two topics:

  1. How do you change and switch between Git branches
  2. How to you change and rename a Git branch

I’ve written full tutorials on each of those ‘git branch change’ topics, each of which is linked in the numbered list above. But I’ll give you the tl;dr response for each of them.

How to change Git branches

To change a git branch name, you simply switch or checkout the branch of interest and issue the following command:

[email protected]  /c/git/github (hotflex)
$ git branch -m hotfix

[email protected]  /c/git/github (hotfix) 
$ git branch -a
* hotfix
main

Keep in mind that this will only perform a local Git branch change. More work is required to push the name change to GitHub or GitLab and share the Git branch change with fellow developers.

How to switch between Git branches

If the developer who queried ‘git branch change’ isn’t interested in a renaming, they’re likely wondering about the command to change between Git branches in their local dev environment.

To change Git branches, developers can use either the checkout or switch command.

The modern preference is to use git switch. Git switch replaced checkout in a 2020 release, although both commands are still supported.

The ability for users to work in isolated branches, and change Git branches when needed, helps simplify distributed version control.

Change Git branches switch command

To change the current Git branch, first list the branches, and then provide the name of the branch of interest to the switch command. The following example has the user start on the hotfix branch and then do a git branch change to put them on the release branch:

[email protected]  /c/git/github (hotfix) 
$ git branch -a 
* hotfix
main
release
support
development
feature

[email protected]  /c/git/github (hotfix)
$ git branch release

[email protected]  /c/git/github (release)
$ git status

Regardless of which path your ‘git branch change’ query intended, be it the switching between branches or the renaming of one, Git makes it relatively easy to perform any of these required functionalities.

 

Source: https://www.theserverside.com/blog/Coffee-Talk-Java-News-Stories-and-Opinions/git-branch-change-example-tutorial-github-gitlab-bitbucket