git commit
-
git commit 을 하면 commit 이력이 남는다. git reset --soft [HAED의 번호] ex) git reset --soft fa555d6 이렇게 사용을 한다. soft 와 hard 옵션이 따로 있는데 되도록이면 soft 를 사용하는게 좋을 듯 하다. 아래의 출처를 들어가면 Reset 과 Revert 를 정말 이해하기 쉽게 알려준다. 출처 : https://www.devpools.kr/2017/02/05/%EC%B4%88%EB%B3%B4%EC%9A%A9-git-%EB%90%98%EB%8F%8C%EB%A6%AC%EA%B8%B0-reset-revert/
git] commit 되돌리기 feat. Resetgit commit 을 하면 commit 이력이 남는다. git reset --soft [HAED의 번호] ex) git reset --soft fa555d6 이렇게 사용을 한다. soft 와 hard 옵션이 따로 있는데 되도록이면 soft 를 사용하는게 좋을 듯 하다. 아래의 출처를 들어가면 Reset 과 Revert 를 정말 이해하기 쉽게 알려준다. 출처 : https://www.devpools.kr/2017/02/05/%EC%B4%88%EB%B3%B4%EC%9A%A9-git-%EB%90%98%EB%8F%8C%EB%A6%AC%EA%B8%B0-reset-revert/
2020.04.02 -
1. git 초기화 git init 1-1. 사용자 등록 git config --global user.email "본인의 이메일" git config --global user.name "본인의 이름" *global 뒤를 생략하고 엔터를 입력하면 현재 본인의 이메일 혹은 이름을 볼 수 있다. 1-2. origin 이라는 이름으로 원격서버를 저장하겠다 라는 뜻. (원격저장소 이름 = origin) *origin 대신 다른 이름으로도 변경이 가능. git remote add origin https://github.com/~!@#!~#@.git Build software better, together GitHub is where people build software. More than 40 million pe..
git] 기초 명령어 모음1. git 초기화 git init 1-1. 사용자 등록 git config --global user.email "본인의 이메일" git config --global user.name "본인의 이름" *global 뒤를 생략하고 엔터를 입력하면 현재 본인의 이메일 혹은 이름을 볼 수 있다. 1-2. origin 이라는 이름으로 원격서버를 저장하겠다 라는 뜻. (원격저장소 이름 = origin) *origin 대신 다른 이름으로도 변경이 가능. git remote add origin https://github.com/~!@#!~#@.git Build software better, together GitHub is where people build software. More than 40 million pe..
2020.01.23