목록Git (2)
할머니의 콤퓨타 도전기
git 초기화 git config --global user.name "사용자 이름" git config --global user.email 메일 주소 git config --list //config 설정확인 로컬 컴퓨터(git)과 원격 저장소(github) 연결 github 사이트에서 Clone or download 클릭 → SSH 또는 HTTPS 주소 복사 터미널에 git clone git@github.com:id/repository name.git 입력 pull : 로컬로 원격 저장소의 내용 가져옴 작업 후 add git add * commit git commint -m "[Push message]" push : 로컬 저장소의 내용을 원격 저장소로 보냄 git push 소스 파일 업로드 자신의 컴퓨터..
Markdown Syntax Will be updated continuously Contents Header List Emphasis Links Images Inline Code Code Block Table Blockquote Horizontal Rule Line Break Header # header1 //글씨 크기 가장 큼 ## header2 ### header3 #### header4 ##### header5 ###### header6 header1 header2 header3 header4 header5 header6 List 1. 순서가 필요한 list - 순서가 필요없는 sublist - 순서가 필요없는 list에 사용가능한 기호 -(hyphen), +(plus sign), *(asteris..