250x250
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- oracle
- test
- 지마켓
- 과학백과사전
- lda
- spring MVC(모델2)방식
- db
- 방식으로 텍스트
- Python
- 자바
- r
- RESFUL
- 코사인 유사도
- word2vec
- (깃)git bash
- Topics
- 크롤링
- 게시판 만들기
- java
- pytorch
- jsp 파일 설정
- Websocket
- 네이버뉴스
- Gmarket
- tomoto
- 파이썬
- 이력서
- 幼稚园杀手(유치원킬러)
- 토픽추출
- mysql
Archives
- Today
- Total
목록Push (2)
무회blog
(깃)git bash,Github, push(보내기) ,002
, git 커밋하기 (vscode 에디터 사용시 명령어를 던지면 가끔 에러가 날수 있음) $ git commit , 에러가 난다면 (vscode 에디터를 사용시, 다른건 다른 방식으로 조회 요망) $ git config --global core.editor "code -w" 로 환경 설정 셋팅후 다시 커밋 하면 잘됨 . $ git commit , 이제 github 에 push 하면 됨. $ git remote add origin 주소 $ git branch -M main $ git push -u origin master
IT/형상관리
2021. 1. 23. 23:56
(깃)git bash, 로컬세팅, Github, commit ,001
, D 드라이브에 폴더 이름 "test" 로 폴더 만들기 mkdir test , test 폴더 들어가기 $ cd test , git repository 만들기 (깃을 초기화하고 여기서 사용할거라고 생각) $ git init , 파일 hello.txt 를 만들어서 안에 hello world! 라는 내용을 넣어줌 $ echo hello world! > hello.txt , 파일 hello.txt 상태를 확인 $ git status On branch master No commits yet Untracked files: (use "git add ..." to include in what will be committed) hello.txt nothing added to commit but untracked fil..
IT/형상관리
2021. 1. 23. 23:44