Programming

git 명령어

sysman 2020. 12. 21. 02:17

$git config --list

 

$ git config --global user.name <user Id>  //id 입력

$ git config --global user.email <e-mail>  //email 입력

$ git config user.name    //user name 내용 확인

$ git config user.email   //email 내용확인

$ git config    //컨피그 내용 확인

 

 

프로젝트 파일 있는곳  c:/project/hello

$ cd /c/project/hello

 

$ git init  //깃 로컬 리포지토리 생성

 

$ vi .gitignore   //제외할 파일 정의함

.gitignore

venv

 

$ git add --all    //보낼 파일 작성

 

$ git commit -am "test 1"  //로컬 리포지토리 저장

 

$ git remote add origin git@github.com:root/a.git  //깃허브에 pipline 연결

 

 

$ git push -u origin master

 

만약 아래처럼 error 증상 있으면 ssh-keygen 생성 필요

git@github.com: Permission denied (publickey).  

fatal: Could not read from remote repository.

 

$ ssh-keygen -t rsa -C "root@abc.com"  //git email

엔터키 계속누림

Your public key has been saved in /c/aaa/test/.ssh/id_rsa.pub  //여기위치 확인

 

$ cat  /c/aaa/test/.ssh/id_rsa.pub

ssh-rsa dw~~~~~~ = root@abc.com    // key 를 복사

 

프로필 사진 클릭->settings-> SSH and GPG keys -> new SSH -> key 붙여넣기 -> 저장

 

$ git push -u origin master     //github로 파일 전송

 

$ git log //로그 확인

 

$git status //상태확인

 

코드 파일들 불러올때

$mkdir test

$cd test

$git clone git@github.com:root/a.git

 

 remote 제거

$gir remote rm origin

 

git repository에서 default branch가 다른 걸로 잡혀 있는 경우

 

해당 repository의 project에서 settings 클릭

branches 클릭->master 변경-> update 클릭 하면 완료

 

'Programming' 카테고리의 다른 글

git - centos 설치  (0) 2021.05.22
Git 설치 for windows10  (0) 2020.12.21
자바스크립트-캔바스 그림  (0) 2020.12.15
자바스크립트 - 조심할 점  (0) 2020.12.09