fboender / multi-git-status

Show uncommitted, untracked and unpushed changes for multiple Git repos
MIT License
470 stars 73 forks source link

Possibility to silence also the "Needs pull" status? #9

Closed voxpelli closed 5 years ago

voxpelli commented 5 years ago

I have plenty of local projects that I work on and whenever I jump into one of them I always do a pull.

To me what I need to get a better overview is what changes that I've done that I have forgotten to share with the rest of my team. Right now I get about 75% "Needs pull" and the rest is "Needs push" or "uncommitted changes" and similar.

What are your thoughts? I'm not the best bash-coder in the world, but I could maybe try and do a PR.

Thanks for a great tool btw!

fboender commented 5 years ago

Hi Pelle!

This is actually something I wanted for myself too. I've implemented --no-XXX options that can be used to disable specific output:

  --no-push
  --no-pull
  --no-upstream
  --no-uncommitted
  --no-untracked
  --no-stashes

You can find the new feature in the master branch of the project.

Thanks for the feature request, and if you run into any problems, please let me know!

voxpelli commented 5 years ago

Works great, thanks a lot @fboender! 👍