This page assumes you already completed Quick Start.
Quick Start gets you running. This page explains how to think about git-drs once the repo is connected and usable.
Use the tools at the right layer:
- use
gitfor commits, branches, merges, andgit pull - use
git-drsfor remote configuration, tracking rules, object hydration, upload/registration, and tracked-file delete reconciliation
The most important distinction is:
git pullupdates commits and checkout stategit drs pullhydrates tracked pointer files already present in the checkout
The standard setup command is:
git drs remote add gen3 production <organization/project> --cred ~/.gen3/credentials.jsonThat command:
- stores the remote configuration
- imports or refreshes credentials
- bootstraps repo-local
git-drswiring when it is missing
git clone <repo-url>
cd <repo-name>
git drs remote add gen3 production <organization/project> --cred ~/.gen3/credentials.json
git drs pullmkdir my-data-repo
cd my-data-repo
git init
git drs remote add gen3 production <organization/project> --cred ~/.gen3/credentials.json
git drs track "*.bam"
git add .gitattributes
git commit -m "Configure tracked files"Most work reduces to this loop:
-
update Git history
git pull
-
hydrate tracked files when needed
git drs pull
To hydrate only part of a repository instead of everything, use include filters:
git drs pull -I "data/sample.bam" git drs pull -I "*.vcf.gz"
-
edit or add files normally
git add ... git commit -m "..." -
push data changes
git drs push
git drs push handles the DRS upload flow and the Git push flow together.
Use plain git push when you only want to push Git-only changes and do not want the git-drs upload stage.
git drs track "*.bam"
git drs track "data/**"Always review and stage .gitattributes after changing tracking rules.
git drs ls-files
git drs ls-files -l
git drs ls-files --drsInterpretation:
*means the worktree has localized bytes-means the worktree still has a pointer
git drs rm sample.bam
git commit -m "Remove sample"
git drs pushThat is the supported delete flow for tracked git-drs objects. For the fuller decision tree, see Removing Files.
git drs remote add gen3 production <organization/project> --cred /path/to/new-credentials.json- Commands Reference for exact command syntax
- Troubleshooting when a real workflow breaks