git

· 기타
[Git] 브랜치(branch)삭제하기 로컬 브랜치 삭제 $ git branch -D 브랜치명 원격 브랜치 삭제 $ git push origin :브랜치명
· 기타
[Git] Markdown emojiPeople :bowtie:😄 :smile:😆 :laughing:😊 :blush:😃 :smiley:☺️ :relaxed:😏 :smirk:😍 :heart_eyes:😘 :kissing_heart:😚 :kissing_closed_eyes:😳 :flushed:😌 :relieved:😆 :satisfied:😁 :grin:😉 :wink:😜 :stuck_out_tongue_winking_eye:😝 :stuck_out_tongue_closed_eyes:😀 :grinning:😗 :kissing:😙 :kissing_smiling_eyes:😛 :stuck_out_tongue:😴 :sleeping:😟 :worried:😦 :frowning:😧 :anguished:😮 :open_mouth:😬 :..
· 기타
[Tools] Mac osx 에 xcode 없이 git 사용하기 Git-scm 에서Max OS X버전 다운 .pkg 실행하여 git 설치 완료 terminal에 git을 입력해보면 xcode를 설치하라는 메세지가 뜬다. $ git xcode-select: note: no developer tools were found at '/Applications/Xcode.app', requesting install. Choose an option in the dialog to download the command line developer tools. xcode를 무시하기 위해 환경변수에 git을 추가해 준다. terminal에 아래와 같이 입력해 주면 된다. $ echo "PATH=/usr/local/git/bi..
· 기타
GIT 명령어 * 기억 잘 안나는 git 명령어들 모아둠. (마지막 수정일 : 2020.11.24) git stash save현재 작업을 저장해두고 branch를 head로 돌린다.(git reset –hard) git stash list저장되어 있는 stash들 보기 git stash popstash들은 stack에 저장된다. 따라서 가장 최근에 save한 stash가 현재 branch에 적용된다. git stash applygit stash pop 과 비슷한 명령어지만 stash list에서 삭제하지 않는다는 점이 다르다. git stash drop필요 없는 stash를 삭제 git stash clear전체 stash list를 삭제 git commit --amend직전 commit 메세지 수정 gi..
S0PH1A
'git' 태그의 글 목록