Git 강제 push
1 $ git push [원격repo] +[브랜치]
1
$ git push [원격repo] +[브랜치]
Git 직전과 금번 Commit을 하나로 정리 1 $ git commit --amend
Local 변경 사항 되돌리기 전체 파일을 마지막 Commit으로 되돌리기 1 $ git checkout . 특정 파일에 대한 변경 사항만 되돌리기 1 $ git checkout '파일명' Add 되돌리기 전체 파일을 Unstage 1 $ git reset HEAD 특정 파일만 Unsta...
Git으로 협업하기 Organization Repository(원본 레포)를 Fork한다. Fork해온 레포(내 레포)를 Local에 Clone하여 작업한다. 이 때, upstream에 원본 레포를 등록해두면 Fetch/Pull을 통해 원본 레포의 변경 사항을 빠르게 받아볼 수 있다. Fork...
Python-MySql 연동하기 with PyMySql
Git 직전과 금번 Commit을 하나로 정리