We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41017f3 commit fe2c64eCopy full SHA for fe2c64e
README.md
@@ -59,6 +59,17 @@ Of note:
59
* `src` contains our TypeScript and CSS code. `index.tsx` is the entry-point for our file, and is mandatory.
60
* `images.d.ts` will tell TypeScript that we're certain types of image files, which create-react-app supports.
61
62
+# Setting up source control
63
+
64
+Our testing tool, Jest, expects some form of source control (such as Git or Mercurial) to be present.
65
+For it to run correctly, we'll need to initialize a git repository.
66
67
+```sh
68
+git init
69
+git add .
70
+git commit -m "Initial commit."
71
+```
72
73
# Running the project
74
75
Running the project is as simple as running
0 commit comments