Skip to content

Commit a83aae4

Browse files
committed
raw git submit commands
1 parent 461b656 commit a83aae4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -179,10 +179,11 @@ This command just runs a basic sanity test that ensures your project passes `npm
179179

180180
### The moment of truth
181181

182-
Submit your work:
182+
When you're ready to submit your work, run the commands:
183183

184184
```bash
185-
npm run submit
185+
git commit -am 'submit'
186+
git push
186187
```
187188

188189
You should submit early and often! There's no downside to repeatedly submitting your assignment. In fact, each time you submit your code is committed and pushed to GitHub which ensures that if disaster strikes you'll have a backup of your work! 😅

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@
2828
"scripts": {
2929
"lint": "standard",
3030
"lint-fix": "standard --fix",
31-
"submit": "git checkout master && git commit -am 'submit' && git push origin master && echo 'Successfully submitted!'",
3231
"test": "npm run lint && tape test/*.js | tap-spec"
3332
}
3433
}

0 commit comments

Comments
 (0)