본문 바로가기

GitHub3

[git] git clone message 의미 Git clone message 의미 오늘도 아무 생각 없이 git clone 하던 와중, 갑자기 git clone 메시지의 의미가 궁금해졌다. 우선, git clone message는 무슨 정보를 주려고 있는 걸까? 공식 문서를 찾아봤으나 이것에 대해서 적혀있지 않아 혼자서 추측해 보건데, 다운르드 상황에 대해서 알려주는 메시지인 것 같다. enumerating, counting, compressing 이라는 단어들만 봐도, 열거하다, 세다, 압축하다 라는 의미이니 다운로드를 실행하기 전에 다운 받을 것들을 정리하고, 후 2개의 메시지로 다운로드 결과를 알려주는 것 같다. 그런데 resolving deltas 부분이 뭘까 찾아보다가 아래와 같은 글을 찾았다. https://stackoverflow.co.. 2023. 4. 18.
[뚝딱뚝딱] GitHub 프로필 꾸미기 따라 하기 이전, 마크다운이 익숙하지 않거나 처음 프로필을 꾸며 보는 사람은 https://github-profile-readme-creator.web.app/ 먼저 사용해보길 바란다. 치는 대로 뱃지와 GitHub stats를 만들어준다. 결과물 +) 2022.Jan.15 업데이트 버전 목차 1. 뱃지 만들기 2. 방문자 표시 3. GitHub stats 4. WakaTime stats 5. 백준 티어 6. 결론 1. 뱃지 만들기 https://shields.io/ Shields.io: Quality metadata badges for open source projects Love Shields? Please consider donating to sustain our activitiesYour Badg.. 2022. 1. 3.
[Git] Git 명령어 정리 Git 최초 설정 # 사용자 정보 git config --global user.name git config --global user.email Remote # 리모트 저장소 확인 git remote -v # 리모트 저장소 추가 git remote add # 리모트 저장소 이름 변경 git remote rename # 리모트 저장소 삭제 git remote remove 원격 저장소에 코드 저장하기 # workspace git add # staging git commit -m "commit message" git status # local repository git push origin # remote repository git fetch origin Branch # 브랜치 이름 변경 git branch -.. 2021. 12. 18.