유형 문제명 문제링크 구현 상호의 배틀필드 순열과 조합 N과 M (1) https://www.acmicpc.net/problem/15649 N과 M (2) https://www.acmicpc.net/problem/15650 일곱 난쟁이 https://www.acmicpc.net/problem/2309 블랙잭 https://www.acmicpc.net/problem/2798 최적 경로 swexpertacademy 그리디 ATM https://www.acmicpc.net/problem/11399 회의실 배정 https://www.acmicpc.net/problem/1931 DFS / BFS DFS와 BFS https://www.acmicpc.net/problem/1260 미로탐색 https://www.acm..
1. 깃 리모트 상태 확인 $ git remote -v - upstream 에 원본 저장소가 연결되지 않았다면 $ git remote add upstream 주소 2. fetch를 통해 원본 소스코드 내용을 받음 $ git fetch upstream 3. 내려받은 코드를 실제 내 repository에 merge $ git merge upstream/main 4. 내 원격 저장소로 푸시 $ git push 출처 https://jybaek.tistory.com/775 [GitHub] fork repository 최신 버전으로 유지하기 # TL;DR git remote add upstream ORIGINAL_OWNER/ORIGINAL_REPOSITORY.git git fetch upstream git merg..
1. Git lfs와 BFG Repo Cleaner를 설치 rtyley.github.io/bfg-repo-cleaner/ BFG Repo-Cleaner by rtyley $ bfg --strip-blobs-bigger-than 100M --replace-text banned.txt repo.git an alternative to git-filter-branch The BFG is a simpler, faster alternative to git-filter-branch for cleansing bad data out of your Git repository history: Removing Crazy Big Files Re rtyley.github.io 2. 복사하고자 하는 저장소(GitLab)의 clon..