-
-
Notifications
You must be signed in to change notification settings - Fork 138
Description
Specs
OS: M3 Mac running Sonoma 14.5
Terminal: iTerm2
Git: 2.45.2
Tomono Commit: 8052bd8
Issue
I am working on getting a series of older packages all consolidated to the new folder. That has worked correctly, however when I git push --all to the repository all the branches besides master show something like 800 commits behind, 4 commits ahead. For example there is a project-cleanup branch that shows 795 commits behind and 4 ahead with those commits being the following:
Move shared auth project files to auth 4.7 project, Remove old project
Move all files to Sdk/Auth/
Root commit for monorepo branch ch/project-cleanup
Merge auth/ch/project-cleanup
The first commit is the from the auth-sdk repository used in the script while the other 3 come from tomono. Is this behavior expected? I have verified that my default branch setting in git matches the branch used across all the repositories master and the master branch shows all expected folders.
My tomono script is the following:
#!/usr/bin/env bash
export MONOREPO_NAME=redacted-packages
./../tomono <<EOF
[email protected]:redacted/Common-Package.git Common
[email protected]:redacted/IoC-Package.git IoC
[email protected]:redacted/Mvc-Package.git Mvc
[email protected]:redacted/media-sdk.git media Sdk/Media
[email protected]:redacted/metrics-sdk.git metrics Sdk/Metrics
[email protected]:redacted/reporting-sdk.git reporting Sdk/Reporting
[email protected]:redacted/auth-sdk.git auth Sdk/Auth
[email protected]:redacted/Cache-Package.git Cache
[email protected]:redacted/Testing-Package.git Testing
EOFAnd I have tested a version with no subfolders:
#!/usr/bin/env bash
export MONOREPO_NAME=redacted-packages
./../tomono <<EOF
[email protected]:redacted/Common-Package.git Common
[email protected]:redacted/IoC-Package.git IoC
[email protected]:redacted/Mvc-Package.git Mvc
[email protected]:redacted/media-sdk.git media
[email protected]:redacted/metrics-sdk.git metrics
[email protected]:redacted/reporting-sdk.git reporting
[email protected]:redacted/auth-sdk.git auth
[email protected]:redacted/Cache-Package.git Cache
[email protected]:redacted/Testing-Package.git Testing
EOFWith the same results.