Git 설치 후 초기 환경설정
git config --global user.name "----name-----"
git config --global user.email "----email----"
option : 정보 확인
git config --list
Github 업로드
1. 초기화
git init
2. 파일 추가
# (.) 모든 파일 추가
git add .
# 파일 하나 추가
git add index.html
# option : 상태 확인
git status
3. 히스토리 생성
git commit -m "first commit"
4. branch 생성
git branch -M main
5. Github repository와 로컬 프로젝트 연결
git remote add origin https://github.com/"...Github.../...repositroy.git..."
option : 연결 확인
git remote -v
6. Github에 올리기
git push origin main
728x90
반응형
'메모장' 카테고리의 다른 글
디지털 신호처리 방식, 데이터 교환 방식 (0) | 2022.11.24 |
---|---|
[메모장] 윈도우 탐색기 바로가기(즐겨찾기) 초기화 (0) | 2022.02.13 |
[메모] Microsoft Project & VISIO 2016, 2019 정품 인증 (내 PC 지키미 때문에 화난 사람을 위해...) , 별도 프로그램 설치 X (0) | 2021.11.13 |
[메모장] Apache WebDAV 설정. (0) | 2021.09.24 |
[우분투] Ubuntu Samba, Windows 10에서 검색 안될 시! (0) | 2021.09.08 |