728x90
반응형
SMALL
GitHub 연동
IntelliJ
Settings - Version Control - GitHub 에서
Add account - Log In via GitHub
커밋 단축키: Ctrl K
Git 사용법
새로운 레포지토리를 만든 경우
git init
git add .
git commit -m 'first commit'
git branch -M main
git remote add origin https://github.com/dev-connor/레포지토리 이름.git
git push -u origin main
브랜치 가지치는 법
- feature 브랜치를 만든다.
- 한가지를 변경 후 커밋한다.
- feature 로 이동한다.
…or create a new repository on the command line
echo "# CRUD" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/dev-connor/CRUD.git
git push -u origin main
…or push an existing repository from the command line
git remote add origin https://github.com/dev-connor/CRUD.git
git branch -M main
git push -u origin main
명령어
git -version
git config --list
git menual
윈도우 커맨드 추천: cmder
에러
E45: 'readonly' option is set (add ! to override)
'읽기만 가능' 상태이므로 덮어쓰려면 느낌표 (강제실행) 를 붙이세요.
- ex)
:w!
강제쓰기:wq!
강제쓰고 종료
728x90
반응형
LIST
'Basic > Git' 카테고리의 다른 글
Code It 강의 (0) | 2022.03.29 |
---|