일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Unity Editor
- Google Developer API
- --watch
- screencapture
- linux
- express
- mongoDB
- spread 연산자
- Camera Movement
- draganddrop
- Spring Boot
- SDK upgrade
- css framework
- critical rendering path
- Unity IAP
- Git
- Packet Network
- MySQL
- springboot
- nodejs
- docker
- react
- Camera Zoom
- java
- Google Refund
- OverTheWire
- unity
- Digital Ocean
- rpg server
- server
- Today
- Total
목록Git (2)
우당탕탕 개발일지
서버에서 깃을 연동했는데, 쓸모없는 파일까지 모두 clone을 하는것은 비효율적인 것 같아서, 꼭 필요한 파일들만 추려서 (.dll파일들) 릴리즈로 업로드하였음. 서버에서 이 private repository에 있는 최신의 에셋을 다운받아야 하는데 이게 너무너무 어려어우어 3일간의 삽질 끝에 드디어 성공함 스크립트 먼저 보자보자보자 donwloader.sh #!/usr/bin/env bash TOKEN ="access token" //todo: enter access token OWNER ="username" //todo: enter username REPO = "clean repo name" //todo: enter repo API_URL="https://$TOKEN:@api.github.com/rep..
깃 레포지토리 연결하기 우선 깃허브에서 레포지토리를 생성한다. 로컬컴퓨터 내 업로드를 원하는 폴더에 가서 gitbash 를 오픈한다. 최초 커밋 시 git init git remote add origin git add . #현재 디렉토리에서 변경된 것 모두 적용 git commit -m "first commit" git branch -M main #main 이라는 branch 생성 (이건 맨최초만) git push -u origin main #main 브랜치로 푸쉬함. git push -u origin main 에서 -u 옵션은 **-set-upstream**의 약어입니다. 이 옵션은 로컬 브랜치를 원격 브랜치에 연결하는 역할을 합니다. 만약 로컬 브랜치에서 처음으로 push를 실행하는 경우, -u 옵션..