본문 바로가기
utils/git and github

[Git] git 설치 후 우선 해줘야 하는 작업들

by ds31x 2024. 5. 21.

Local Repository를 위한 기본 설정 작업들

Git: autocrlf 설정: 개행문자 — Dsaint31's blog (tistory.com)

 

Git: autocrlf 설정: 개행문자

Git: autocrlf 설정: 개행문자(new line)core.autocrlf : git에서 파일을 git repository 에 업로드할 때 개행문자(new line)를 처리하는 option.core.autocrlf : newline관련 설정.core.autocrlf 는 다음과 같은 세가지 mode를 지

dsaint31.tistory.com

 

참고: CR(Carriage Return)과 LF(Line Feed) (velog.io)

 

CR(Carriage Return)과 LF(Line Feed)

CR(Carriage Return), LF(Line Feed)의 정의 컴퓨터에서 CR(Carriage Return, 이하 CR)과 LF(Line Feed, 이하 LF)는 줄바꿈 방식을 뜻한다. | 방식 | 설명 | 이스케이프 문자 | | --- | -

velog.io

 

GIT : 기본 Editor 설정. — Dsaint31's blog (tistory.com)

 

GIT : 기본 Editor 설정.

GIT : 기본 Editor 설정.git config --global core.editor 명령으로 어떤 Editor 를 사용할지 선택 가능함git config --global core.editor "vim"또는 .gitconfig에 다음 내용 추가.editor=vim많은 경우, vim이 아닌 Nano로 되어

dsaint31.tistory.com

 

참고: [Linux] vi (or vim) 사용법 정리 — Dsaint31's blog (tistory.com)

 

[Linux] vi (or vim) 사용법 정리

vi (or vim) 사용법 정리 더보기관련자료.https://ds31x.tistory.com/174 [CE] Text file : Text 파일이란?"text file" 은 사람과 컴퓨터가 읽을 수 있고 처리할 수 있도록 encoding 된 characters 로 이루어진 electric text li

dsaint31.tistory.com

 

Git: 사용자와 이메일 정보 설정 및 확인하기 — Dsaint31's blog (tistory.com)

 

Git: 사용자와 이메일 정보 설정 및 확인하기

Git 사용자와 이메일 정보 확인하기[user.name](http://user.name>) 확인하기git config user.name  [user.email](http://user.email>) 확인하기git config user.emailGlobal로 Git 사용자와 이메일 정보 설정하기현재 시스템의

dsaint31.tistory.com

 


Remote Repository 를 위한 작업들

 

[ssh-keygen] ssh 관련 private key와 public key 생성하기. (tistory.com)

 

[ssh-keygen] ssh 관련 private key와 public key 생성하기.

ssh (secure shell)ssh는 secure shell의 약자로 네트워크 상에서 암호화된 통신을 위한 프로토콜 (및 이를 구현한 프로그램)을 가르킴. 주로 원격지의 장비에 보안이 보장된 접속을 제공하며 이를 위해

ds31x.tistory.com

[github] ssh 키 등록하기. (tistory.com)

 

[github] ssh 키 등록하기.

Github 계정에 ssh public key 등록(설정).ssh public key를 계정에 등록하면 해당 계정의 모든 repository에 ssh 프로토콜로 접속이 가능해짐. 등록하는 방법은 다음과 같음. 1. Settings → SSH and GPG kyes 로 이동

ds31x.tistory.com

 

'utils > git and github' 카테고리의 다른 글

[Git] mv  (0) 2024.05.21
[Git] rm  (0) 2024.05.21
[Git] git diff  (0) 2024.05.20
[Git] Git Summary (작성중)  (0) 2024.05.20
[Git] commit —amend  (0) 2024.05.20