1. Github 설치 및 설정

Hyuntae Jung·2022년 6월 23일
0

Github

목록 보기
1/2

1. name, email 설정

$ git config --global user.name "***"
$ git config --global user.email "*@*.com"

2. Linux 기본 명령어

(1) ls

list의 축약어, 현재 디렉토리 또는 폴더에 있는 컨텐츠를 나열하는 명령어

ls Python_edu  

(2) open, start

Mac: open .
Windows: start .
start Python_edu

(3) clear

Terminal 초기화

(4) pwd

Print Working Directory

(5) cd

Change Directory

cd Python_edu
cd ..

(6) touch

파일 만들기

touch [test1.py](http://test1.py) test2.txt test3.xlsx

(7) mkdir

Make Directory 폴더 만들기

(8) rm

Remove

(9) rm -rf

-r : Recursive

-f : Force

폴더 삭제

(10) git init 경로명

git init . # 현재 폴더를 의미하는 .을 사용할 수도 있다.

저장소 초기화

0개의 댓글