Skip to content

Commit

Permalink
make: git-sr and git-status to check status of all repositories
Browse files Browse the repository at this point in the history
  • Loading branch information
practicalli-johnny committed Nov 3, 2024
1 parent 9f7233f commit 7924a89
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- shell: aliases for editing shell history with fd
- git: aliases for git clone `git clone p:repo-name`
- zsh: neovim config selector functions
- make: `git-sr` and `git-status` to check status of all repositories

### Changed
- git: restructure multiple configs, using relative include file paths
Expand All @@ -28,4 +29,3 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
## 2023-09-28
### Added
- add changelog

10 changes: 9 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,15 @@ build-clean: ## Clean build assets or given directory

# ------------------------------------ #

# ------- Version Control ------------ #
git-sr: ## check status of all git repos under current directory
$(info --------- Multiple Git Status ---------)
mgitstatus -e --flatten

git-status: ## check status of all git repos under current directory
$(info --------- Multiple Git Status ---------)
mgitstatus
# ------------------------------------ #

# ------- Documentation Generation ---------- #

Expand Down Expand Up @@ -226,4 +235,3 @@ test-ci: deps ## Test runner for integration tests
all: test-ci dist clean ## Call test-ci dist and clean targets, used for CI

# ------------------------------------ #

0 comments on commit 7924a89

Please sign in to comment.