{"id":21301601,"url":"https://github.com/divakarkumarp/dvc-demo","last_synced_at":"2026-04-24T12:07:55.450Z","repository":{"id":241158168,"uuid":"804309599","full_name":"divakarkumarp/DVC-Demo","owner":"divakarkumarp","description":"Testing Data Version Control Open-Source ML Pipeline Automation","archived":false,"fork":false,"pushed_at":"2024-05-27T17:06:35.000Z","size":8,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-28T11:06:29.447Z","etag":null,"topics":["dvc","dvc-pipeline","git","python"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/divakarkumarp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2024-05-22T10:59:53.000Z","updated_at":"2024-05-27T17:09:31.000Z","dependencies_parsed_at":"2024-05-27T19:16:58.765Z","dependency_job_id":null,"html_url":"https://github.com/divakarkumarp/DVC-Demo","commit_stats":null,"previous_names":["divakarkumarp/dvc-demo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/divakarkumarp/DVC-Demo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/divakarkumarp%2FDVC-Demo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/divakarkumarp%2FDVC-Demo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/divakarkumarp%2FDVC-Demo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/divakarkumarp%2FDVC-Demo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/divakarkumarp","download_url":"https://codeload.github.com/divakarkumarp/DVC-Demo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/divakarkumarp%2FDVC-Demo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32222552,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-24T10:26:35.452Z","status":"ssl_error","status_checked_at":"2026-04-24T10:25:27.643Z","response_time":64,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["dvc","dvc-pipeline","git","python"],"created_at":"2024-11-21T15:46:45.219Z","updated_at":"2026-04-24T12:07:55.414Z","avatar_url":"https://github.com/divakarkumarp.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# DVC-Demo\nData Version Control is a free, open-source tool for data management, ML pipeline automation, and experiment management. This helps data science and machine learning teams manage large datasets, make projects reproducible, and collaborate better.\n\n### Follow the to test DVC demo code \n\n```\nE:\\DVC-Demo\u003econda create -p venv python==3.12 -y\n\nE:\\DVC-Demo\u003econda activate venv/\n\n(E:\\DVC-Demo\\venv) E:\\DVC-Demo\u003egit init\n\n(E:\\DVC-Demo\\venv) E:\\DVC-Demo\u003epip install dvc\n\n(E:\\DVC-Demo\\venv) E:\\DVC-Demo\u003edvc init\n\n(E:\\DVC-Demo\\venv) E:\\DVC-Demo\u003egit commit -m \"dvc init\"\n[main 0f38aab] dvc init\n 3 files changed, 6 insertions(+)\n create mode 100644 .dvc/.gitignore\n create mode 100644 .dvc/config\n create mode 100644 .dvcignore\n\n(E:\\DVC-Demo\\venv) E:\\DVC-Demo\u003edvc add data/data.txt\n100% Adding...|███████████████████████████████████████████████████████████████████████████████|1/1 [00:00,  7.48file/s]\n\nTo track the changes with git, run:\n\n        git add 'data\\.gitignore' 'data\\data.txt.dvc'\n\nTo enable auto staging, run:\n\n        dvc config core.autostage true\n\n(E:\\DVC-Demo\\venv) E:\\DVC-Demo\u003egit add data/.gitignore\n\n(E:\\DVC-Demo\\venv) E:\\DVC-Demo\u003egit branch\n* main\n\n(E:\\DVC-Demo\\venv) E:\\DVC-Demo\u003edvc add data/data.txt\n100% Adding...|███████████████████████████████████████████████████████████████████████████████|1/1 [00:00, 12.45file/s]\n\nTo track the changes with git, run:\n\n        git add 'data\\data.txt.dvc'\n\nTo enable auto staging, run:\n\n        dvc config core.autostage true\n\n(E:\\DVC-Demo\\venv) E:\\DVC-Demo\u003egit add data/data.txt.dvc\n\n(E:\\DVC-Demo\\venv) E:\\DVC-Demo\u003egit status\nOn branch main\nYour branch is ahead of 'origin/main' by 1 commit.\n  (use \"git push\" to publish your local commits)\n\nChanges to be committed:\n  (use \"git restore --staged \u003cfile\u003e...\" to unstage)\n        new file:   data/.gitignore\n        new file:   data/data.txt.dvc\n\nUntracked files:\n  (use \"git add \u003cfile\u003e...\" to include in what will be committed)\n        .gitignore\n\n\n(E:\\DVC-Demo\\venv) E:\\DVC-Demo\u003egit commit -m \"DVC\"\n[main a058ea9] DVC\n 2 files changed, 6 insertions(+)\n create mode 100644 data/.gitignore\n create mode 100644 data/data.txt.dvc\n\n(E:\\DVC-Demo\\venv) E:\\DVC-Demo\u003egit log\ncommit a058ea9249deee545b75a2b15ec9606bf0eb2262 (HEAD -\u003e main)\nAuthor: Divakar Kumar \u003cdivakarkumar424@gmail.com\u003e\nDate:   Wed May 22 22:02:59 2024 +0530\n\n    DVC\n\ncommit 0f38aabc592b8769abf2edb2ba7a9f7254a15545\nAuthor: Divakar Kumar \u003cdivakarkumar424@gmail.com\u003e\nDate:   Wed May 22 20:06:15 2024 +0530\n\n    dvc init\n\ncommit ddef71cbdfe2e35a98464b0669c3a15c799bb102 (origin/main, origin/HEAD)\nAuthor: Divakar Kumar \u003c32620288+divakarkumarp@users.noreply.github.com\u003e\nDate:   Wed May 22 16:29:54 2024 +0530\n\n    Initial commit\n\n(E:\\DVC-Demo\\venv) E:\\DVC-Demo\u003edvc add data/data.txt\n100% Adding...|███████████████████████████████████████████████████████████████████████████████|1/1 [00:00, 16.06file/s]\n\nTo track the changes with git, run:\n\n        git add 'data\\data.txt.dvc'\n\nTo enable auto staging, run:\n\n        dvc config core.autostage true\n\n(E:\\DVC-Demo\\venv) E:\\DVC-Demo\u003edvc add data/data.txt\n100% Adding...|███████████████████████████████████████████████████████████████████████████████|1/1 [00:00, 10.08file/s]\n\nTo track the changes with git, run:\n\n        git add 'data\\data.txt.dvc'\n\nTo enable auto staging, run:\n\n        dvc config core.autostage true\n\n(E:\\DVC-Demo\\venv) E:\\DVC-Demo\u003egit add data/data.txt.dvc\n\n(E:\\DVC-Demo\\venv) E:\\DVC-Demo\u003egit commit -m \"3rd version\"\n[main 7ccf636] 3rd version\n 1 file changed, 2 insertions(+), 2 deletions(-)\n\n(E:\\DVC-Demo\\venv) E:\\DVC-Demo\u003egit log\ncommit 7ccf63616be397ecd9cfd397c4028cc4c75dcc7e (HEAD -\u003e main)\nAuthor: Divakar Kumar \u003cdivakarkumar424@gmail.com\u003e\nDate:   Wed May 22 22:07:34 2024 +0530\n\n    3rd version\n\ncommit a058ea9249deee545b75a2b15ec9606bf0eb2262\nAuthor: Divakar Kumar \u003cdivakarkumar424@gmail.com\u003e\nDate:   Wed May 22 22:02:59 2024 +0530\n\n    DVC\n\ncommit 0f38aabc592b8769abf2edb2ba7a9f7254a15545\nAuthor: Divakar Kumar \u003cdivakarkumar424@gmail.com\u003e\nDate:   Wed May 22 20:06:15 2024 +0530\n\n    dvc init\n\ncommit ddef71cbdfe2e35a98464b0669c3a15c799bb102 (origin/main, origin/HEAD)\nAuthor: Divakar Kumar \u003c32620288+divakarkumarp@users.noreply.github.com\u003e\nDate:   Wed May 22 16:29:54 2024 +0530\n\n    Initial commit\n\n(E:\\DVC-Demo\\venv) E:\\DVC-Demo\u003egit checkout aadc123b37dc712028ebbe97d1f951a0\nerror: pathspec 'aadc123b37dc712028ebbe97d1f951a0' did not match any file(s) known to git\n\n(E:\\DVC-Demo\\venv) E:\\DVC-Demo\u003egit checkout a058ea9249deee545b75a2b15ec9606bf0eb2262\nNote: switching to 'a058ea9249deee545b75a2b15ec9606bf0eb2262'.\n\nYou are in 'detached HEAD' state. You can look around, make experimental\nchanges and commit them, and you can discard any commits you make in this\nstate without impacting any branches by switching back to a branch.\n\nIf you want to create a new branch to retain commits you create, you may\ndo so (now or later) by using -c with the switch command. Example:\n\n  git switch -c \u003cnew-branch-name\u003e\n\nOr undo this operation with:\n\n  git switch -\n\nTurn off this advice by setting config variable advice.detachedHead to false\n\nHEAD is now at a058ea9 DVC\n\n(E:\\DVC-Demo\\venv) E:\\DVC-Demo\u003edvc checkout\nBuilding workspace index                                                                     |2.00 [00:00, 71.6entry/s]\nComparing indexes                                                                            |3.00 [00:00,  600entry/s]\nApplying changes                                                                             |1.00 [00:00,   303file/s]\nM       data\\data.txt\n\n(E:\\DVC-Demo\\venv) E:\\DVC-Demo\u003egit checkout main\nPrevious HEAD position was a058ea9 DVC\nSwitched to branch 'main'\nYour branch is ahead of 'origin/main' by 3 commits.\n  (use \"git push\" to publish your local commits)\n\n(E:\\DVC-Demo\\venv) E:\\DVC-Demo\u003edvc checkout\nBuilding workspace index                                                                     |2.00 [00:00,  117entry/s]\nComparing indexes                                                                            |3.00 [00:00,  601entry/s]\nApplying changes                                                                             |1.00 [00:00,   142file/s]\nM       data\\data.txt\n\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdivakarkumarp%2Fdvc-demo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdivakarkumarp%2Fdvc-demo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdivakarkumarp%2Fdvc-demo/lists"}