일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- MACS2
- cellranger
- CSS
- matplotlib
- drug muggers
- single cell
- ChIPseq
- scRNAseq
- drug development
- pandas
- Bioinformatics
- CUT&RUN
- Git
- HTML
- 싱글셀 분석
- ngs
- Batch effect
- 비타민 C
- python matplotlib
- javascript
- single cell analysis
- julia
- scRNAseq analysis
- github
- PYTHON
- single cell rnaseq
- CUTandRUN
- DataFrame
- js
- EdgeR
- Today
- Total
목록github (9)
바이오 대표
실제로 사용 되는 기본 코드 예시 1. Github Account 만들기 2. 저장 후 Repository 만들기 3. 연동 $ git clone [url] 4. 해당 directory로 이동 $ cd [directory_name] 5. Configure Git $ git config --global user.name [Name] $ git config --global user.email [user@example.com] 만약 github page 에서 수정된게 있으면 push 할때 문제가 생겨서 $ git pull origin main 후에 $ git push origin main 을 하면 된다
여러 개발자들과 함께 코드를 공유 및 병합을 할때 각자 branch에서 수정 후 master branch에 Three-way 로 병합되거나, fast-forward 로 병합된다. 보통 three way merge 는 error debug할때 어떤 branch 에서 발생했는지 찾기 어려움으로 rebase를 이용해서 하나를 base로 fast forward merge 가 가능하게 해서 debug를 좀더 쉽게 할수 있도록 한다. => commit history 를 linearly 확인 할 수 있다. $ git merge $ git rebase --> changing the base commit that's used for our branch $ git checkou..
git remote Lists remote repos remote 저장소 리스트 git remote -v List remote repos verbosely remote 저장소 좀 더 자세하게 git remote show Describes a single remote repo remote 저장소 한개 설명 git remote update Fetches the most up-to-date objects 최신버전 fetch git fetch Downloads specific objects 특정부분 fetch git branch -r Lists remote branches git 이 현재 tracking 하는 remote branch Github을 Remote repository 로 이용을 할 때: Pull (..
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..