Git
Deku on 21-07-20
Deku on 21-07-16
//------------------ * HEAD 종류 HEAD : 현재 위치 commit, checkout 등의 명령에 의해 변경됨 FETCH_HEAD : fetch 명령으로 가져온 내용의 가장 최신 위치 ORIG_HEAD : 이전 HEAD 의 위치 MERGE_HEAD : merge 명...
Code Git
코드루덴스 on 21-06-05
- 이전 모든 커밋 지우기, git 저장소 초기화 //--------------------------------- < 방법 1> - .git 폴더를 삭제 - submodule을 사용하고 있으면 적용 불가한 방법 설정 파일 .git/config 백업 rm -rf .git # .git...
코드루덴스 on 21-04-25
- commit message, title description, 제목, 상세 설명 변경 방법 - 주의!!! 이미 push한 커밋은 수정하려면 --force옵션을 써야 한다 * 바로 전 커밋한 설명 수정 - amend 사용 git commit --amend -m "New messag...
코드루덴스 on 21-04-24
GitHub Pull Request command line * GitHub command line 설치 https://cli.github.com/ https://github.com/cli/cli#windows choco install gh * 로그인 설정 gh auth login - Personal access tokens 생성 - 계정...
Code Git github
Git Client * Fork - $49.99 (무료로 사용가능)
코드루덴스 on 21-03-29
I hope it will be able to save your time!Continue reading on Medium »
Git programming-tips Programming Troubleshooting
Stories by Jangwook Kim on Medium on 20-06-11
git push --delete origin YOUR_TAG_NAME https://stackoverflow.com/questions/5480258/how-to-delete-a-remote-tag
shaking blog on 19-11-08