Git

    [Git] github remote 저장소 변경하기

    참고 링크 : https://gist.github.com/480/4681b67d2a906db8c6c1321cc678f05f github 리모트 리포지토리 변경하기 github 리모트 리포지토리 변경하기. GitHub Gist: instantly share code, notes, and snippets. gist.github.com 1. 기존 repository pull/push 하기 git pull git add . git commit -m "clean push" git push 2. 기존 repository remote 제거 git remote remove origin 3. 새 repository remote 추가 git remote add origin [깃 주소]

    [GIT] git branch merge하기

    참고한 블로그 https://backlog.com/git-tutorial/kr/stepup/stepup2_4.html Git Branch Merge하기 현재 branch commit 후 push 하기 git checkout master/main git merge git push -u origin master/main git checkout (다시 원래 branch로 돌아가고자 할 때) * master/main 중 하나의 이름만 사용해야 함.