Develop/Git
Git Push
Programics
2021. 5. 24. 13:44
반응형
(서버로) 깃 밀어넣기
git push
git push 리모트명 브랜치명
git push --set-upstream 리모트명 브랜치명
* 강제 푸쉬
git push -f
git push -f 리모트명 브랜치명
git push -u 리모트명 브랜치명
해당 push 이후, 실행하는 push는 상단의 리모트명 위치로 저장됨
원격저장소의 브랜치 삭제
git push origin --delete 브랜치명
반응형