Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- ubuntu grep
- EC2
- ubuntu
- Image to image translation
- autoencoder
- pix2pix
- ubuntu 명령어
- AWS Certificate
- bash 명령어
- ubuntu mount
- DCGAN
- 쏴아리 딥러닝
- 말해보시개 Linux
- linux
- ubuntu zsh
- unsupervised learning
- anomaly detection
- CycleGAN
- aws rds
- F-AnoGAN
- docker
- git log
- git commit
- AWS
- ubuntu pipe
- bash vs zsh
- AnoGAN
- gan
- AWS EC2
- 말해보시개 딥러닝
Archives
- Today
- Total
목록git branch (1)
쏴아리의 딥러닝 스터디
git branch, checkout, merge
git branch, checkout, merge git branch git branch는 독립적으로 작업을 진행하기 위한 개념으로, 각 branch는 다른 brach와 관련 없이 작업을 진행합니다. 보통 master, develop, topic branch를 생성하여 형상관리를 합니다. main branch : 배포용 안정적인 Branch topic branch: 기능 추가 같은 단위 작업을 위한 Branch 1. branch 생성 방법 $git branch 위의 명령어로 branch를 생성할 수 있습니다. 2. 현재 Branch 확인 방법 $git branch 위의 명령어로 현재 branch를 확인할 수 있습니다 . 예제) topic_branch 생성하기 git branch 명령어를 통해 topic_..
Git
2021. 5. 17. 22:30