Git
-
[210927] git commit 하기 (초기설정 config / status, add, commit, log)Study 2021. 9. 27. 18:47
* 오늘의 TIL은 이고잉 님의 생활코딩 '지옥에서 온 git'을 들으며 실시간으로 작성했습니다. 커밋을 하기 위해 임의의 txt 파일을 생성하기. $ vim f1.txt 0. vim 관련 명령어 - vim 이란? 메모장과 같은 일종의 텍스트 편집기! i 수정모드 진입. 텍스트 작성 가능 esc 수정모드 종료 텍스트 작성 불가 :wq 변경사항 저장 후 종료 파일 내용 출력 $ cat ~.txt 0. Git에서 서명하기 : git config 누가 commit을 했는지 알기 위해 본격적으로 커밋을 올리기 전에 최초 한 번 내 서명을 입력해주어야 한다. $ git config --global user.name 닉네임 $ git config --global user.email 이메일주소 1. git statu..
-
[210908] git 시작하기 (git bash 설치, git init)Study 2021. 9. 8. 18:40
* 오늘의 TIL은 이고잉 님의 생활코딩 '지옥에서 온 git'을 들으며 실시간으로 작성했습니다. 0. git 설치 'git download' 검색 또는 여기 Git - Downloads Downloads macOS Windows Linux/Unix Older releases are available and the Git source repository is on GitHub. GUI Clients Git comes with built-in GUI tools (git-gui, gitk), but there are several third-party tools for users looking for a platform-specific exp git-scm.com - git 명령어 보는 법 : git bas..