태그
-
전체 7 / 1 페이지
-
-
git tag -d 태그명
-
git push origin --delete $(git tag -l)
-
해당 repo 폴더에서 실행:git config --unset user.namegit config --unset user.email
-
git config --global --unset user.namegit config --global --unset user.email
-
git config --global --get user.namegit config --global --get user.email
-
tag 푸쉬하기git push 원격저장소명 태그명git push 원격저장소명 로컬브랜치명 --tags원격저장소에 특정태그를 푸쉬하려면 첫번째 명…
-
branch 푸쉬하기git push 원격저장소명 로컬브랜치명git push 원격저장소명 로컬브랜치명:원격브랜치명위 명령어로 로컬에 있는 bran…
-
