일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 자바
- (깃)git bash
- spring MVC(모델2)방식
- 지마켓
- test
- 이력서
- 코사인 유사도
- Gmarket
- 게시판 만들기
- Websocket
- db
- java
- 방식으로 텍스트
- RESFUL
- lda
- 네이버뉴스
- oracle
- 과학백과사전
- tomoto
- 幼稚园杀手(유치원킬러)
- jsp 파일 설정
- r
- Topics
- pytorch
- 토픽추출
- 크롤링
- mysql
- word2vec
- Python
- 파이썬
- Today
- Total
목록IT/형상관리 (5)
무회blog
gitbash 에서 지정경로 접근후 깃배시 지정한 경로 삭제 (.git 삭제) rm -rf .git 삭제후 확인 해보기 ls -al ls -al
, 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..
, d 드라이브에 폴더 test2 를 만들기 $ mkdir test2 , 폴더 test2 에 들어가기 $ cd test2 , push 한 내용 가져오기 $ git clone 주소 , 실제 폴더 들어가서 잘 가져와졌는지 확인 .
, 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
, 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..