earwig/git-repo-updater

Add a command to list repositories which have commits recently

mywildquant opened this issue · 3 comments

I have a directory which contains all the projects I want to track. It's awesome I just need to issue a command gitup . to update all the repositories.

But most of the time, I want to have a look at which repository has commits recently, so I can look into what is changed.

how about provide a command like

gitup --recent 5 .

which will list repositories which have commits in 5 days.

I tried to look into the code to implement my self. But Python is not familiar with me.

Thank you for the suggestion, but I don't think this is really within the scope of the project.

You could try something like this, though: gitup -e "git log --since='5 days ago'"

thank you, this can be a workaround