1 git config credential.helper store
1
git config credential.helper store
위 명령어 실행 후 push하면 다음에는 물어보지 않는다.
설정파일 ecosystem.config.js 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 module.exports = { apps: [ { name: "pm2 name", // pm2 name script: "./bin/www", // // 앱 실...
상태 조회 1 git status git add git add는 Working Directory에 있는 변경된 파일들을 Staging Area에 올리는 명령어. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 # 현재 디렉토리 하위에 있는 모든 변경 사항 git add . # 디렉토리 위치에 상관없이 모든 변경 사항 git add...
Power Shell을 실행 다음 코드에서 인코딩할 부분 수정 후 실행 1 2 3 $plainText = "비밀번호" # 인코딩할 문자열 $base64Encoded = [System.Convert]::ToBase64String([System.Text.Encoding]::UTF8.GetBytes($plainTex...
env-cmd를 이용한 react 환경변수 설정
pm2 설정 및 실행