{"id":15732283,"url":"https://github.com/stopsopa/monorepo","last_synced_at":"2026-04-27T12:01:42.529Z","repository":{"id":84269242,"uuid":"298682092","full_name":"stopsopa/monorepo","owner":"stopsopa","description":null,"archived":false,"fork":false,"pushed_at":"2021-02-02T17:19:42.000Z","size":541,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-08T21:07:11.711Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stopsopa.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-09-25T21:22:21.000Z","updated_at":"2021-02-02T17:19:44.000Z","dependencies_parsed_at":null,"dependency_job_id":"545c30f0-d9e0-4806-bca0-d933ac8e5094","html_url":"https://github.com/stopsopa/monorepo","commit_stats":{"total_commits":22,"total_committers":2,"mean_commits":11.0,"dds":"0.045454545454545414","last_synced_commit":"85af67b364cf7f4717e093b683ae04aafc5036b7"},"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/stopsopa/monorepo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stopsopa%2Fmonorepo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stopsopa%2Fmonorepo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stopsopa%2Fmonorepo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stopsopa%2Fmonorepo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stopsopa","download_url":"https://codeload.github.com/stopsopa/monorepo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stopsopa%2Fmonorepo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32335297,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-26T23:26:28.701Z","status":"online","status_checked_at":"2026-04-27T02:00:06.769Z","response_time":128,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-10-04T00:08:50.852Z","updated_at":"2026-04-27T12:01:42.501Z","avatar_url":"https://github.com/stopsopa.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![npm version](https://badge.fury.io/js/gitmonorepo.svg)](https://badge.fury.io/js/gitmonorepo)\n# homepage\n    https://github.com/stopsopa/monorepo    \n\n# Installation\n\nRun in project main directory\n\n```bash\n\nnpx gitmonorepo\n\n```\n\nthen:\n\n```bash\n\ncp .git/monorepo/config-dist.yml .git/config.yml\n          \n```\n\nthen configure file .git/config.yml\n\n# Using from parent repository\n\nExecuting automerge script\n\n```bash\n\n/bin/bash .git/monorepo/merge-generator.sh\n\n```\n\n# Mounting/unmounting git hooks\n\n```bash\n\n/bin/bash .git/monorepo/hooks.sh \n/bin/bash .git/monorepo/hooks.sh --off\n\n# bring previous hooks, existing in .git dir, before npx install...\n/bin/bash .git/monorepo/hooks.sh --revert \n\n```\n\n... by default after installing this lib through npx hooks will be automatically mounted\n\n# Add to parent repository Makefile\n\n```makefile\n\nmerge:\n\t/bin/bash .git/monorepo/merge-generator.sh                           \n\n```\n\n# Adding single branch from existing remote\n\nadd remote\n\n```bash\ngit remote add gca git@bitbucket.org:project/repository.git\n```\n\ncheckout remote to local branch\n```bash\ngit checkout -b branch remotes/repo_name/master\n```\n\nIf there is no master branch on remote (new repository) then\n\n```bash\ngit push repo_name master\n```\n\n# fixing pushing wrong tags\n\n```bash\n\ngit ls-remote --tags --refs origin | cut -d '/' -f3 \u003e tag.sh \n\ncat tag.sh | while read line; do echo \"git push origin --delete  $line\"; done \u003e tag2.sh\n\n\n```\n\n# some weird problems with pushing with --follow-tags\n\nhttps://stackoverflow.com/a/56546026\nhttps://git-scm.com/docs/git-push#Documentation/git-push.txt---follow-tags\n\n# suggestion\n\nI strongly suggest saving files:\n\n```bash\n#!/bin/bash\nGITSTORAGESOURCE=\"git@github.com:xxx/repository.git\"\nGITSTORAGELIST=(\n    '.git/config::xxx/.git_config'\n    '.git/config.yml::xxx/.git_config.yml'\n    'gitstorage-config.sh::xxx/gitstorage-config.sh'\n)\n\n```\n\nwith repository https://github.com/stopsopa/gitstorage\n\n# dev\n\nTo recreate testing repository run:\n\nsee *make dev-prepare* command\n\n# todo\n\n- [x] handle merge-with-diff in react\n- [x] handle merge conflict during pull\n- [x] npx installator \n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstopsopa%2Fmonorepo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstopsopa%2Fmonorepo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstopsopa%2Fmonorepo/lists"}