Jest

  • mock 문법 익히기

프론트 이론 다시보기

git command 습관 들이기

  • 깃 메세지 수정(amend the git msg)
1
git commit --amend -m "수정메세지 내용"
1
2
3
4
git commit -m 'my notes' path/to/my/file.ext

git commit -o path/to/myfile -m "the message"
// -o, --only commit only specified files
1
git diff --name-only --cached
1
2
3
4
5
6
// not working
touch index.html app.js style.css

// work
echo > your_file.txt
type nul > your_file.txt