git
-
-
git command 모음git 2024. 2. 8. 18:41
Remote 연결local repo 를 remote repo 와 연결한다.# local repo 에서git remote add origin https://github.com/windbird123/my-repo.git Profile 설정git config --global user.name jm.kimgit config --global user.email jm.kim@mycorp.com 작업 했던 모든 것을 되돌릴 때git resetgit checkout . 특정 파일을 tracking 에서 제외할 때git rm --cached .idea/misc.xml git add 로 staged 상태인 파일을 원래대로 돌릴 때git restore --staged my_file.txt 특정 branch 만 clone 할..