Compare commits

...

3 Commits

Author SHA1 Message Date
5630b4c3c6 chore: update submodule URLs to work utilities
Update all work utilities submodule references from bash-modules-rightcrowd
to rightcrowd-utilities to reflect the repository rename.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-17 15:03:54 +01:00
ac67714ee8 chore: update work submodule to latest
Update to include:
- bin/ directory with scripts support
- Simplified documentation
- work-hello-world test script
2025-12-17 14:55:38 +01:00
99de189f50 feat: integrate work utilities as submodule at ~/.work
Move work utilities to cleaner location at ~/.work instead of
.bash_aliases/hosts/work for better organization.

Work utilities include:
- init.sh: Single entry point for all modules
- config.sh: Company-specific environment configuration
- modules/: Bash utilities (gitlab, jira, k8s, tenant-manager, dev)
- bin/: Executable scripts (future)

Source with: source ~/.work/init.sh
2025-12-17 14:49:45 +01:00
3 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
# shellcheck shell=bash
# vim: set ft=bash :
# Source work modules
[ -f "$HOME/.work/init.sh" ] && source "$HOME/.work/init.sh"

12
.gitmodules vendored Normal file
View File

@@ -0,0 +1,12 @@
[submodule ".bash_aliases/hosts/rightcrowd-modules"]
path = .bash_aliases/hosts/rightcrowd-modules
url = git@gitlab.com:hektor.misplon/rightcrowd-utilities.git
[submodule ".bash_aliases/hosts/work-modules"]
path = .bash_aliases/hosts/work-modules
url = git@gitlab.com:hektor.misplon/rightcrowd-utilities.git
[submodule ".bash_aliases/hosts/work"]
path = .bash_aliases/hosts/work
url = git@gitlab.com:hektor.misplon/rightcrowd-utilities.git
[submodule ".work"]
path = .work
url = git@gitlab.com:hektor.misplon/rightcrowd-utilities.git

1
.work Submodule

Submodule .work added at 5c767cf63d