惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

WordPress大学
WordPress大学
Stack Overflow Blog
Stack Overflow Blog
人人都是产品经理
人人都是产品经理
Y
Y Combinator Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
D
DataBreaches.Net
GbyAI
GbyAI
Microsoft Security Blog
Microsoft Security Blog
博客园_首页
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Engineering at Meta
Engineering at Meta
IT之家
IT之家
MongoDB | Blog
MongoDB | Blog
The GitHub Blog
The GitHub Blog
月光博客
月光博客
U
Unit 42
Hugging Face - Blog
Hugging Face - Blog
博客园 - 叶小钗
腾讯CDC
B
Blog RSS Feed
博客园 - Franky
爱范儿
爱范儿

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Day 11: Track a Dataset with DVC
Thu Kha Kyawe · 2026-06-16 · via DEV Community

Lab Information

A teammate has added the transactions dataset to the xFusionCorp Industries fraud-detection repository, but it was committed directly to Git instead of being tracked with DVC. Bring the repository in line with the team standard—every dataset under data/ must be tracked by DVC, not by Git.

A project exists at /root/code/fraud-detection/ with DVC already initialised. The dataset data/raw/transactions.csv is currently tracked by Git, and the team standard requires DVC to own it instead.

Stop Git from tracking the dataset without deleting it from disk.

Track the same dataset with DVC so a .dvc pointer file is produced and data/raw/.gitignore excludes the dataset itself.

Stage the new .dvc pointer and the new .gitignore, then record a Git commit with the message Track transactions dataset with DVC.

Once tracking is moved to DVC, the DVC TRACKED section in the EXPLORER panel will list the dataset, confirming the extension recognises it as a DVC-managed file.


Lab Solutions

✅ Part 1: Lab Step-by-Step Guidelines

Step 1: Move into the repository

cd /root/code/fraud-detection

Verify the dataset is currently tracked by Git:

git ls-files | grep transactions.csv

Expected:

root@controlplane fraud-detection on  main ➜  git ls-files | grep transactions.csv
data/raw/transactions.csv

Step 2: Stop Git from tracking the dataset (keep the file)

The lab specifically says:

Stop Git from tracking the dataset without deleting it from disk.

Use:

git rm --cached data/raw/transactions.csv

Important: Use --cached.

Removes the file from Git tracking
Keeps the actual file on disk

Verify:

ls -l data/raw/transactions.csv

The file should still exist.

Step 3: Track the dataset with DVC

Run:

dvc add data/raw/transactions.csv

DVC will create:

data/raw/transactions.csv.dvc

and update:

data/raw/.gitignore

Expected output:

root@controlplane fraud-detection on  main [✘?] ➜  dvc add data/raw/transactions.csv
100% Adding...|███████████████████████████████████████|1/1 [00:00, 60.46file/s]

To track the changes with git, run:

        git add data/raw/.gitignore data/raw/transactions.csv.dvc

To enable auto staging, run:

        dvc config core.autostage true

Step 4: Verify DVC artifacts

Check:

ls -la data/raw

Expected:

root@controlplane fraud-detection on  main [✘?] ➜  ls -la data/raw
total 20
drwxr-xr-x 2 root root 4096 Jun 14 11:59 .
drwxr-xr-x 3 root root 4096 Jun 14 11:56 ..
-rw-r--r-- 1 root root   18 Jun 14 11:59 .gitignore
-rw-r--r-- 1 root root  379 Jun 14 11:59 transactions.csv
-rw-r--r-- 1 root root   95 Jun 14 11:59 transactions.csv.dvc

Inspect the new files:

cat data/raw/.gitignore
cat data/raw/transactions.csv.dvc

Step 5: Check Git status

git status

You should see something similar to:

root@controlplane fraud-detection on  main [✘?] ➜  git status
On branch main
Changes to be committed:
  (use "git restore --staged <file>..." to unstage)
        deleted:    data/raw/transactions.csv

Untracked files:
  (use "git add <file>..." to include in what will be committed)
        data/

Step 6: Stage the required files

Stage everything needed for the migration:

git add data/raw/transactions.csv.dvc
git add data/raw/.gitignore
git add -u

The git add -u stages the removal of transactions.csv from Git tracking.

Verify:

git status

Everything should be staged.

Step 7: Commit the changes

Use the exact commit message required by the lab:

git commit -m "Track transactions dataset with DVC"

Step 8: Verify the commit

git log --oneline -n 1

Expected:

root@controlplane fraud-detection on  main ➜  git log --oneline -n 1
1b8a2c7 (HEAD -> main) Track transactions dataset with DVC

Step 9: Final verification

Confirm Git no longer tracks the dataset:

git ls-files | grep transactions.csv

Expected:

data/raw/transactions.csv.dvc

Confirm DVC tracks it:

dvc status

Expected:

Data and pipelines are up to date.


🧠 Part 2: Simple Step-by-Step Explanation (Beginner Friendly)

  • What is the problem?

Right now:

Git
└── data/raw/transactions.csv

Git is tracking a dataset file.

The team standard says:

Git → track code and metadata
DVC → track datasets and models

So we need to move ownership of the dataset from Git to DVC.

Why use git rm --cached?

If you run:

git rm data/raw/transactions.csv

Git removes the file completely.

We don't want that.

Instead:

git rm --cached data/raw/transactions.csv

removes it only from Git tracking.

The file remains on disk:

data/raw/transactions.csv

  • What does dvc add do?

When you run:

dvc add data/raw/transactions.csv

DVC creates a pointer file:

data/raw/transactions.csv.dvc

Think of it as:

transactions.csv.dvc

points to

transactions.csv

Git stores the small .dvc file instead of the large dataset.

  • Why is .gitignore created?

DVC automatically adds:

data/raw/.gitignore

so Git ignores:

transactions.csv

This prevents someone from accidentally committing the dataset again.

  • What gets committed to Git?

After migration, Git stores:

data/raw/transactions.csv.dvc
data/raw/.gitignore

Git no longer stores:

data/raw/transactions.csv


Resources & Next Steps
📦 Full Code Repository: KodeKloud Learning Labs
💬 Join Discussion: DEV Community - Share your thoughts and questions
💼 Let's Connect: LinkedIn - I'd love to connect with you

Credits
• All labs are from: KodeKloud
• I sincerely appreciate your provision of these valuable resources.