Back

Explore Courses Blog Tutorials Interview Questions
+12 votes
3 views
in DevOps and Agile by (19.7k points)

I'm from a Subversion background and, when I had a branch, I knew what I was working on with "These working files point to this branch".

But with Git I'm not sure when I am editing a file in NetBeans or Notepad++, whether it's tied to the master or another branch.

There's no problem with git in bash, it tells me what I'm doing.

1 Answer

+9 votes
by (62.9k points)

To display the current branch you're working on, without the other branches being listed, you can do the following:

git rev-parse --abbrev-ref HEAD

Browse Categories

...