검색결과 리스트
글
TOOL/VCS
2016. 2. 18. 14:30
///// Git (깃)
How to remove latest commit at remote repository
///// 원격저장소의 마지막 커밋 지우기
- in case of master branch (마스터 브랜치의 경우)
git push origin +HEAD^:master
- other way (다른 방법)
git reset --hard HEAD^
git push -f
///// 참고
Remove last commit from remote git repository:
http://stackoverflow.com/questions/8225125/remove-last-commit-from-remote-git-repository
Git 상황별 명령어 tips:
http://www.letmecompile.com/git-%EC%83%81%ED%99%A9%EB%B3%84-%EB%AA%85%EB%A0%B9%EC%96%B4-tips/
Git 간편 안내서
'TOOL > VCS' 카테고리의 다른 글
[Git] tag (0) | 2016.04.13 |
---|---|
[Git] cherry-pick (특정 커밋의 변경사항만 복사) (0) | 2016.04.13 |
[Git] Dropbox를 git remote repository(원격저장소)로 만들기 (0) | 2016.02.09 |
[Git] 개발한거 다 지우고 최신 커밋으로 돌리기 (0) | 2016.02.08 |
[Git] .gitignore (push 안 할 파일 목록) (0) | 2016.01.31 |