일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
29 | 30 |
- OP
- ラックライフ
- アポトーシス
- 文豪ストレイドッグス
- Git
- NICO Touches the Walls
- Lisa
- Yama
- Official髭男dism
- sid
- Mrs. GREEN APPLE
- 강철의 연금술사
- 드라마
- 명령어
- 소드 아트 온라인
- 소드아트온라인
- ASCA
- きみの名前
- wms
- Django
- ED
- angular
- Sword art online
- Kisses and Kills
- 容姿端麗な嘘
- 藤川千愛
- 귀멸의 칼날
- シド
- 나루토
- THE ORAL CIGARETTES
- Today
- Total
목록IT/git (2)
일본IT외노자생활
git master로 push 했을때 main에 push 반영 안될 때 "main and master are entirely different commit histories." "There isn't anything to compare. Nothing to compare, branches are entirely different commit histories" git checkout master git branch main master -f git checkout main git push origin main -f git add 하려 했을때 오류 warning: LF will be replaced by CRLF in portfolio/static/css/styles.css. The file will ha..
git init => git 생성 git branch -m [branch이름] => branch 변경 git remote add origin "github주소" => github 연결 git remote -v => git remote 확인 git remote rm origin => remote 삭제 git config user.name "닉네임" (git config --global 붙일시 특정 사용자의 모든 저장소 설정에 적용) =>name 설정 git config user.email "이메일" (git config --global 붙일시 특정 사용자의 모든 저장소 설정에 적용) => email 설정 git add . => 파일 변경 사항 저장 git commit -m "저장할때 주석" => githu..