<file>
위 명령을 통해서 modified 상태인 파일을 이전 상태로 돌릴 수 있었다.
$ git checkout [-f|--ours|--theirs|-m|--conflict=<style>] [<tree-ish>] [--] <pathspec>…
$ git checkout [-f|--ours|--theirs|-m|--conflict=<style>] [<tree-ish>] --pathspec-from-file=<file> [--pathspec-file-nul]
pathspec
은 어떻게 경로를 정의하는지를 의미한다. .gitignore
파일에서 쓰이고 또한, command-line에서도 쓰인다. (git add *.c
)// ecosystem.config.js
module.exports = [{
script: 'app.js',
restart_delay: 3000
}]
pm2 start app.js --restart-delay=3000