일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- scRNAseq analysis
- CSS
- Git
- julia
- ngs
- javascript
- ChIPseq
- pandas
- drug development
- github
- CUT&RUN
- cellranger
- single cell
- single cell rnaseq
- DataFrame
- js
- scRNAseq
- matplotlib
- MACS2
- drug muggers
- python matplotlib
- EdgeR
- 싱글셀 분석
- 비타민 C
- Bioinformatics
- PYTHON
- HTML
- single cell analysis
- Batch effect
- CUTandRUN
- Today
- Total
목록Git (6)
바이오 대표
Undoing Unstaged $ git checkout [file] Undoing Staged $ git reset HEAD [file] Undoing Committed $ git commit --amend "commend" RollBack $ git revert HEAD $ git checkout [file] : Unstaged 상태의 파일이 수정 전으로 돌아간다. $ git reset HEAD [file] : Staged 되었던 파일 --> Unstaged * HEAD : current snapshot * -p flag를 사용하면, modify 할때마다 물어본다 if you want to snapshot or not (commi..
$ git rm [file] $ git status 에서도 확인 가능 --> deleted 확인) $ git mv [file] [file_renew] .gitignore file : A file containing a list of files or filename patterns for Git to skip for the current repo. ( git status에 쓸데없는 noise 가 뜨는것을 방지하기 위해 파일을 무시 ) *활용방법 $ echo [file] > .gitignore $ ls -la 를 통해 확인 가능 $ git add .gitignore git mv Similar to the Linux ..
Git Project Git Directory - 과거의 모든 파일들과 수정 내용들 저장소 Working Tree - 프로젝트의 현재 상황 Staging Area - 다음 commit 에 바뀔 내용들 파일을 트랙킹 할때 크게 세가지 state로 구분할 수 있다. [1] Modified - changed but not commited yet [2] Staged - changes are ready to be committed (mark changed for tracking) [3] Committed - stored in the git directory Git 을 이용한 File tracking 의 기본 work flow 는 다음과 같다. Step 0..
[1] 내 컴퓨터에 git 이 깔려있는지 확인하기 (Mac) $ git --version (notepad++ 이나 atom ( integrated developer environments or IDEs) 을 사용할 수 도 있다) [2] Git 설치 내 컴퓨터에 git 이 설치되어 있지 않다면 https://git-scm.com/downloads 에서 설치 할 수 있다. - 아래 페이지에 Linux, Mac, Window 환경에서의 설치법이 자세히 설명되어있다. https://git-scm.com/book/en/v2/Getting-Started-Installing-Git Git - Installing Git This book was written using Git ve..