일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- cudnn
- web 사진
- broscoding
- CES 2O21 참가
- CES 2O21 참여
- 자료구조
- 데이터전문기관
- 결합전문기관
- paragraph
- mglearn
- 재귀함수
- tensorflow
- vscode
- KNeighborsClassifier
- discrete_scatter
- pycharm
- java역사
- 대이터
- web 용어
- C언어
- inorder
- 웹 용어
- postorder
- html
- Keras
- web
- 머신러닝
- bccard
- classification
- web 개발
- Today
- Total
목록전체 글 (688)
bro's coding
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/bqSyID/btqH0WpgKXZ/0f3yQBEltAFQVViEFGFPa1/img.png)
branch 주기 $ git push origin branch 받기 $ git fetch github의 update 내역을 받아옴 // only local branch $ git branch // all branch $ git branch -a $ git checkout -b $ git branch
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/cASbwU/btqH2yhjy9W/4jEBRVsIHyqLirfXeiVy4k/img.png)
$ git fetch $ git status $ git pull origin master
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/vdRi5/btqIbzFJpg9/g6EDNdbtHvt5r2e7cU7kdk/img.png)
file name을 .gitignore로 만든다. https://www.atlassian.com/git/tutorials/saving-changes/gitignore .gitignore file - ignoring files in Git | Atlassian Git Tutorial Git ignore patterns are used to exclude certain files in your working directory from your Git history. They can be local, global, or shared with your team. www.atlassian.com
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/Bcymr/btqHZJp1xUb/fhyoH35GjLLHrEhLl8CQ0k/img.png)
https://broscoding.tistory.com/394 원격 오리진 누르고 푸쉬 $ git push origin master
![](http://i1.daumcdn.net/thumb/C150x150/?fname=https://blog.kakaocdn.net/dn/E5PVD/btqIdsfiHC8/CeFrEbSPCtLAvSB7N1ypRk/img.png)
$ git remote 설정한 것이 없기때문에 아무것도 뜨지 않음 https://broscoding.tistory.com/393 // repository를 이란 이름의 원격저장소로 설정 git remote add origin https://github.com/brothergive/github-practice.git // 폴더의 현 브랜치에 커밋된 내용들을 이란 repository에 이란 branch에 올림 git push -u origin master