Python

Visual Studio 설치 + Github 사용

Nirah 2023. 1. 11. 12:25

파이썬이 내 첫 코딩언어가 될 줄이야.

코딩을 처음 해보지만 왠지 예전부터 잘 할것 같은 느낌이 있어서 이번에 즐겁게 배워보려고 한다.

 

 

파이썬 설치

https://www.python.org/downloads/windows/

 

 

파이썬 자습서

https://docs.python.org/ko/3/tutorial/index.html

 

 

 

 

vscode 설치

https://code.visualstudio.com/

인스톨러 다운로드 후 모두 기본 값으로 설치

 

파이썬 확장팩, ansible, kubernetes, yaml install

 

작업 폴더 생성

 

테스트 파일 생성

git > new 레포 생성

git 설치

 

https://git-scm.com/

설치 후 테스트

git 레포 초기화

git init

 

.git 숨김파일이 생성 됨

 

(~는 보안상 가림)

git config --global user.name "~~~"

git config --global user.email "~~@naver.com"

 

테스트 파일 생성

 

로컬 저장소에 등록 (스테이징)

git add -A

git status

 

커밋

git commit -m 'First Commit'

 

새로 파일 생성 시, ‘u’ 표시 (untracked)

 

git status

git clone

https://kim-oriental.tistory.com/31

 

git log

 

first commit 상태로 돌리기

git reset