Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
Tags
- 바이오헬스
- 함수
- isds
- ai파운데이션
- 프론트엔드
- K-푸드
- 워드프레스
- 꺼지지않는빛
- APEC
- 자바스크립트
- 구글
- 접근성
- bom
- 통일문화콘텐츠공모전
- 티스토리
- 모니터링
- WordPress
- 핫플뱃길
- 개방형무선접속망
- 일본어
- K-뷰티
- 의사인력수급추계위원회
- 사랑의지우개
- DOM
- 생성형AI
- 피지컬ai
- 새만금빵조제과쇼
- HTML5
- K오가노이드
- K푸드의날
Archives
- Today
- Total
공공기획 스튜디오 퍼블리크
Git App for File Exchange 본문
설치 및 초기설정
인스톨
- Check Default Editor
초기설정
/* Run Git Bash */
/* Move Directory to be used */
$ cd d:/folder
/* Initialization */
$ git init
/* Personal Registration */
git config --global user.email "email registered in github.com"
git config --global user.name "name registered in github.com"
기본사용법
- git init // Current directory .git create
- git add <filename> // Staging area
- git commit -m ‘script’ // Repository
- git add . // All files
- git status // Status
- git log –all –online // Working log
Github.com
- git clone https://domain/account/repository.git // Download
설정 진행
- clone from github.com to local
- upload from local to github.com
- change directory to position for up
- git init // .git 숨김폴더 생성
- git remote add origin https://www.guthub.com/[account name]/[repository name].git
- git remote -v // 연결확인
- git remote rm origin // 연결제거
- git config –global init.defaultBranch main // git init 실행할때마다 branch명을 main으로 하도록 설정(한번만해도 됨.)
- git pull // 원격저장소의 파일을 로컬로 가져옴.
- git push –set-upstream origin main // 업로딩 설정?
- git add *
- git commit -m “업로딩 메시지. 파일 또는 디렉토리명과 암 상관없는 메시지”
- git push
- github.com id/pass insert
- Reference
- Be finding original source.
정적 웹사이트 만들기
리포지토리 생성
- 웹주소는 사용자명.github.io/리포지토리 형식이 됨.
페이지 주소 발행
- Settings - Pages - Branch 에서 None을 main으로 변경한 후 Save
'Implement' 카테고리의 다른 글
노트북 브랜드별 단축키 (0) | 2025.02.17 |
---|---|
시각장애인을 위한 마이크로소프트 오피스 활용 (2) | 2024.09.18 |
시각장애인을 위한 ZOOM 활용 (0) | 2024.09.18 |
아이피타임 나스2듀얼 설치 후 초기설정 (0) | 2024.09.18 |
마이코로소프트 파워오토메이트 활용 (0) | 2024.09.18 |