Search result

[git] HEAD 종류, 주소, 범위 기호 차이 정리

//------------------ * HEAD 종류 HEAD : 현재 위치 commit, checkout 등의 명령에 의해 변경됨 FETCH_HEAD : fetch 명령으로 가져온 내용의 가장 최신 위치 ORIG_HEAD : 이전 HEAD 의 위치 MERGE_HEAD : merge 명...

Code Git

git 초기화(히스토리 로그 삭제)

- 이전 모든 커밋 지우기, git 저장소 초기화 //--------------------------------- < 방법 1> - .git 폴더를 삭제 - submodule을 사용하고 있으면 적용 불가한 방법 설정 파일 .git/config 백업 rm -rf .git # .git...

Code Git

[git] 이미 커밋한 메시지 수정 방법

- commit message, title description, 제목, 상세 설명 변경 방법 - 주의!!! 이미 push한 커밋은 수정하려면 --force옵션을 써야 한다 * 바로 전 커밋한 설명 수정 - amend 사용 git commit --amend -m "New messag...

Code Git

GitHub Pull Request 명령어로 실행

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 (GUI)리스트

Git Client * Fork - $49.99 (무료로 사용가능)

Code Git

Git Client (GUI)리스트

Git Client * Fork - $49.99 (무료로 사용가능)

Code Git

[TroubleShooting] How to rollback a dropped stash?

I hope it will be able to save your time!Continue reading on Medium »

Git programming-tips Programming Troubleshooting

[GIT] remote 에 올라간 git tag 삭제

git push --delete origin YOUR_TAG_NAME     https://stackoverflow.com/questions/5480258/how-to-delete-a-remote-tag

Git

Azure 웹앱 서비스에 Azure DevOps 로 CI/CD 연동 Laravel 프로젝트 올리기

Local Laravel 셋팅 $ brew install [email protected]$ curl -sS https://getcomposer.org/installer | php$ composer global require laravel/installer$ laravel new hello-laravel-project$ cd hello-laravel-project$ com...

azure app service CD CI CI/CD DevOps Git github Laravel Web App

Azure 웹앱 서비스에 Azure DevOps 로 CI/CD 연동 Laravel 프로젝트 올리기

Local Laravel 셋팅 $ brew install [email protected]$ curl -sS https://getcomposer.org/installer | php$ composer global require laravel/installer$ laravel new hello-laravel-project$ cd hello-laravel-project$ com...

azure app service CD CI CI/CD DevOps Git github Laravel Web App