Error대용량 파일 git push 시 아래와 같은 에러 발생git -c diff.mnemonicprefix=false -c core.quotepath=false --no-optional-locks push -v --tags origin main:mainPOST git-receive-pack (chunked)remote: error: Trace: aeceddb3b4c7c5142e1618a5f8b26bfa13a3980ad802b5ffa38c6dc7995b1df5 remote: error: See https://gh.io/lfs for more information. remote: error: File yolov9/runs/train/exp10/weights/last.pt is 1..
반응형
Tools/gibhub
파일 용량문제로 푸시에러가 발생하여 커밋을 되돌려야하는 상황 발생 git reset 명령어로 커밋 취소 가능 직전 커밋 되돌리기git reset --soft HEAD^ 푸시 사라짐. Thank you!
Node.js DB설정정보를 아래와 같이 config파일로 분할하여 gitignore하여 형상관리를 하지 않는 방법으로 민감정보 노출을 막아왔다. { "development": { "username": "user", "password": "12345", "database": "DADARI_DB", "host": "127.0.0.1", "dialect": "mysql", }, "test": { "username": "user", "password": "12345", "database": "DADARI_DB", "host": "127.0.0.1", "dialect": "mysql", }, } 하지만 최근 프로젝트에 GIt Actions기능을 이용하여 CI/CD환경을 구축하고자 하여 원격 git reposit..
1. Node Project 생성 CI를 진행할 노드 프로젝트를 준비함. 2. Workflow 생성 CI를 진행할 레포의 Actions클릭 후 Node.js Configure 클릭. yml 파일 작성 name: Node CI Example on: push: branches: [ "main" ] pull_request: branches: [ "main" ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Use Node.js 17.x uses: actions/setup-node@v3 with: node-version: 17.x cache: 'npm' - run: npm ci - run: npm test env: D..
반응형