git remote -v
현재 주소확인
git branch
브랜치 목록확인
(git. 파일없애)
git init
새로 생성
git remote add origin https://github.com/hjw1191/OTT.git
git remote remove origin (주소제거)
git remote add origin https://github.com/hjw1191/OTT/tree/main/front
(하위주소)
git branch -M main
새로운 레퍼지토리
브랜치 만들기
git add .
git commit -m "첫"
git branch
브랜치 목록확인
git push -u origin main
푸시.
git push -f origin main
강제 덮여쓰기
git config --global user.name "황종완"
git config --global --get user.name(확인)
git config --global user.email "hjw1191@gmail.com"
git config --global --get user.email(주소확인)
-----------------------------------------------------------------------------------------
특정폴더만 업데이트
git config --global user.name "황종완"
git config --global user.email "hjw1191@gmail.com"
git fetch origin
git fetch origin git checkout -b main origin/main
git add front/
(상위 폴더에서)
git commit -m "Updated front folder with new changes"
git push origin main
'Git' 카테고리의 다른 글
git>git stash로 코드 잠깐 보관하기 (1) | 2024.07.24 |
---|---|
git> git flow / trunk-based 브랜치 전략 (2) | 2024.07.24 |
Github 사용법 3. 브랜치로 협업하기 (pull request) (1) | 2024.07.24 |
Github 사용법 2. 타인과 협업하기 (git clone, pull) (1) | 2024.07.24 |
git>Github 사용법 1. 내 코드 올릴 땐 git push (0) | 2024.07.24 |