Does anyone know of a BitBucket plugin or other way to see which projects are not committed to recently? I'm trying to look at a large repository and find which projects have not been committed to recently.
Thanks!
If you're on Bitbucket Cloud, then I don't know.
If you're on Bitbucket Server, the free Repository Descriptions add-on is useful for seeing latest-activity per-repo (see far-right column in this screenshot - you might need to scroll):
Thank you for your response. If my repository has a bunch of nested folders, and I click into one of those folders, will this plugin always show the "max commit date" for any folder?
From the screenshot it looks like this is exactly what I am looking for, I am just wondering if it works not only for the 1st folder in the repo but for all folders no matter how deep you navigate into.
Thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Oh, you want activity per folder **inside** the repo!
If you're on linux, this should work in a local clone of your repo:
find -maxdepth 1 -type d | xargs -I {} bash -c 'printf "%-20s %s \n" "{}" "$(git --no-pager log -1 --pretty='"'%ci %cn'"' -- {};)"'
The "find" command also exists on mac, so probably that command can be massaged to work on mac, too.
The result looks something like this:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.