Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
August 30, 2021 10:19 am GMT

How to show which Git branches have changed recently

I will admit to some bad working habits, one of them is working on multiple things at the same time rather trying to focus exclusively on one unit of work and completing it before I move on to the next thing. This means that I sometimes have multiple Github branches that I'm working on for a repository. Unfortunately this intersects with another bad habit I have of not cleaning up my local branches frequently. The two combined mean that when I'm slicing between tasks I often find it difficult to find the branch I was working on before I switched tasks.

Enter Git sorts to save me!

By default Git sorts branches lexically but using the committerdate sort you instead get the branches from the most recently committed to the last commit date.

Git sorts can also be reversed by putting the minus sign before the sort name.

This effectively brings back the branches in the order you last changed them.

To summarise then:

git branch --sort=-committerdate

Allows you to see which branches you changed most recently in a repository.


Original Link: https://dev.to/rrees/how-to-show-which-git-branches-have-changed-recently-2g83

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To