Search⌘ K
AI Features

Git with Test-Driven Development

Explore how to use Git as a source control system within Test-Driven Development for React. Understand how to initialize a Git repository, manage files with .gitignore, stage and commit changes with gitmoji, and maintain an all-green test state for reliable project history.

Checking in changes

Whenever you add a new test and get it to pass, that’s a good time to get your project into source control. That ...