일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- nodejs교과서
- React
- express-generator
- sementicversion
- node
- npm명령어
- 리액트
- 제로초예제
- mongoose
- 리액트스타디
- MongoDB
- 시퀄라이즈
- 시퀄라이즈공부
- NoSQL
- React Component
- 리액트컴포넌트
- NPM
- 리액트기초
- mongo
- component
- nodeJS
- sequelize
- 클래스컴포넌트
- Today
- Total
목록etc/mac (3)
개발노트
https://ooeunz.tistory.com/21
#!/bin/bash # This way you can customize which branches should be skipped when # prepending commit message. if [ -z "$BRANCHES_TO_SKIP" ]; then BRANCHES_TO_SKIP=(master develop test) fi BRANCH_NAME=$(git symbolic-ref --short HEAD) BRANCH_NAME="${BRANCH_NAME##*/}" BRANCH_EXCLUDED=$(printf "%s\n" "${BRANCHES_TO_SKIP[@]}" | grep -c "^$BRANCH_NAME$") BRANCH_IN_COMMIT=$(grep -c "\[$BRANCH_NAME\]" $1)..

rm -rf cd : change directory 폴더이동 ls : list segments 현재 경로 내 파일목록 pwd : print working directory 현재경로 출력 mkdir : make directory 디렉토리 생성 rmdir : remove directory 디렉토리 제거 cp : copy 파일/디렉토리 복사 mv : move 파일/디렉토리 이동 cat : concaternate 터미널에 파일내용 출력(js나 html을 열면 소스코드가 터미널에 출력) touch : 파일 생성 및 날짜정보 변경 sudo : 관리자 권한으로 실행 cd ~ : 홈디렉토리로 이동 open 파일이름 curl Client Uniform Resource Locater cmd에서 url을 통해 직접 requ..