일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- Django column 값 가져오기
- Django 특정 값 가져오기
- Django
- Dependency Injection
- html cell size
- table cell size
- html cell
- DI
- Spring
- table tag
- Dependency
- html
- Today
- Total
목록git (9)
emluy 개발 일기
1. 작업할 폴더 만들기 2. git init 3. git remote add origin 4. git pull origin 5. git branch : 내가 연결할 원격 브랜치를 로컬에도 만들어줘야하므로!! (git branch 명령어는 로컬에 있는 브랜치 확인하는 명령어임) => 내가 로컬에서 만든 브랜치는 굳이 이름은 안같아도됨. (확인필요) 6. git checkout : 5번에서 만들어준 로컬브랜치에서 작업하게 이동 7. 작업 후 git push origin : 원격 브랜치로 push 해서 변경사항 적용
1. clone : 파일만 그대로 복사해오는것임 2. pull : 작업 commit 내역 등 다 가져오는 것임 $ git pull -b
로컬저장소로 지정한 폴더 들어가서 $ rm -rf .git
1. 오류 메세지 why? github의 repository와 내 local storage의 commit상태가 같지 않기때문 2. 해결책 2-1. git fetch => git fetch origin git rebase / => git rebase origin/master 2-2. git pull origin master git push origin master
1. 원격 저장소에서 폴더 삭제 $git rm --cached -r 폴더이름/ 2. 원격 저장소에 적용하기 $git commit -m "커밋메세지" $git push origin master
0. git branch merge 해주기 : $git branch merge 브랜치이름 1. commit message 1-1. 자동 생성되게 하고 싶을 때 : $git branch merge 브랜치이름 --no-edit 1-2. 수정 : $git branch merge 브랜치이름 --edit
0. 현재 branch들 확인 : $ git branch 1. branch 생성 : $ git branch 브랜치이름 2. branch 확인 2-1. git log 시 만들어진 branch들 확인 가능 2-2. git branch로 branch들 확인 (현재 작업 branch 앞에 *표시) 3. master에서 작업하는 상태에서 branch 만든 후 commit 또 하면 변경내용 master branch에만 적용되고 나머지 branch에는 적용 x 3-1. master에서 작업할 때 commit 상태 3-2. branch를 옮긴 후 commit : $git checkout 브랜치이름 $git log --oneline -> 로그 간략히 보기 $git log --oneline --branches ->각 브랜..
1. 파일 수정 후 다른 점 보기 : git diff 2. 파일 수정 전으로 되돌리기 2-1. staging 하기 전에만 사용가능 : git checkout -- 파일이름.txt 2-2. staging 되돌리기 (commit 전) : git reset HEAD 파일이름.txt 2-3. commit 되돌리기 : git reset HEAD^ 2-4. 그외 - git reset --soft HEAD^ : commit 취소 - git reset --mixed HEAD^ : commit, staging 둘다 취소 - git reset --hard HEAD^ : commit, stagint, 수정 다 취소 2-5. 특정 commit이 최근 commit이 되게 하기 : git log -> 최근 commit 되게 하고..