Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Idea: Config for including/excluding specific projects/directories by path/glob #130

Open
Nezteb opened this issue Nov 16, 2023 · 0 comments

Comments

@Nezteb
Copy link

Nezteb commented Nov 16, 2023

Currently running git standup in a directory of git repos shows previous-day commits in every subdirectory. I would like a way to configure this behavior, almost like a global .gitstandupignore or something.

git standup can still only operate on the current directory and subdirectories, but I'd like to be able to filter directories by their name or path.

Example config:

[projects]

# Default to process includes first
process_includes_first = true

includes = [
  # All git projects
  "~/Git",
  # Or select projects
  "~/Git/oss_project_1"
]

excludes = [
  # Exclude a specific project
  "~/Git/side_project_1",
  # Exclude any git projects in the home directory
  "~",
  # Exclude any directory named 'node_modules'
  "node_modules"
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant