Python

일반적으로, 작업이 끝나고 push, 작업 시작 전에 pull을 통해서 원격저장소 내용을 업데이트하면 문제가 발생하지 않는다. 다만, 서로 다른 이력으로 구성되는 경우 push를 하려고 하면 아래의 메세지가 뜬다. $ git push origin master To https://github.com/dy5299/TIL.git ! [rejected] master -> master (fetch first) error: failed to push some refs to 'https://github.com/dy5299/TIL.git' # 원격 저장소와 로컬 저장소의 이력이 다르다. hint: Updates were rejected because the remote contains work that ..
GIT GIT은 분산버전관리시스템(DVCS)이다. 소스코드의 버전 및 이력을 관리할 수 있다. 준비하기 윈도우에서 git을 활용하기 위해서 git python를 설치한다. git을 활용하기 위해서 GUI 툴인 source tree, github desktop 등을 활용할 수도 있다. 초기 설치를 완료한 이후에 컴퓨터에 author 정보를 입력한다. 이메일 정보를 github에 가입된 이메일로 일치시켜야 커밋 이력들이 관리된다. $ git config --global user.name 깃헙이름 $ git config --global user.email 깃헙이메일 로컬저장소 (Repository) 활용하기 1. 저장소 초기화 $ git init Initialized empty Git repository in..
Jupyter Notebook 실행 윈도우즈에서 Jupyter Notebook 명령 프롬포트에서 Jupyter Notebook 입력 인터페이스 Edit Mode (초록색) 에서 ESC Key를 누르면 Command Mode(파란색) 된다. 세부 기능 Ctrl + Enter : 셀 실행 Interrupt, Restart, ... : 셀 실행 취소 Command Mode에서 단축키 단축키 Command Mode (Press Esc to enable) Y : to code M : to markdown A: instert cell above B : insert cell below X : cut selected cells C : copy selected cells D, D : delete selected cell..
noodle-dev
'Python' 카테고리의 글 목록 (26 Page)