git config --global merge.tool kdiff3
git mergetool
'git' 카테고리의 다른 글
원격 저장소 추가 방법 (0) | 2018.08.08 |
---|---|
branch (0) | 2018.08.07 |
실행순서 (0) | 2018.08.07 |
git password 저장 (0) | 2017.11.06 |
git config 계정설정 (0) | 2017.11.06 |
git config --global merge.tool kdiff3
git mergetool
원격 저장소 추가 방법 (0) | 2018.08.08 |
---|---|
branch (0) | 2018.08.07 |
실행순서 (0) | 2018.08.07 |
git password 저장 (0) | 2017.11.06 |
git config 계정설정 (0) | 2017.11.06 |
1. exp branch 생성
git branch exp
2. exp 를 master 로 머지
git checkout master
git merge exp
3. master 를 exp 로 머지
git checkout exp
git merge master
4. exp branch 삭제
git checkout master
git branch -d exp
원격 저장소 추가 방법 (0) | 2018.08.08 |
---|---|
merge tool (0) | 2018.08.08 |
실행순서 (0) | 2018.08.07 |
git password 저장 (0) | 2017.11.06 |
git config 계정설정 (0) | 2017.11.06 |
git init
vi test
git status
git add test
git status
git config --global user.name tnsdnjs
git config --global user.email sonagisw@hotmail.com
git commit
vim 창 (1.블라블라)
git log
vi test (커맨트 수정)
git status
git add test (파일 수정후 git commit 이 아니라 git add 파일명 해줘야 함)
git status
git commit
vim 창 (2.파일수정)
git status
merge tool (0) | 2018.08.08 |
---|---|
branch (0) | 2018.08.07 |
git password 저장 (0) | 2017.11.06 |
git config 계정설정 (0) | 2017.11.06 |
repository not found (0) | 2017.11.06 |