일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- AWS EC2
- 말해보시개 딥러닝
- ubuntu pipe
- EC2
- aws rds
- git log
- ubuntu 명령어
- gan
- 쏴아리 딥러닝
- CycleGAN
- linux
- ubuntu
- anomaly detection
- pix2pix
- 말해보시개 Linux
- AWS Certificate
- autoencoder
- ubuntu zsh
- F-AnoGAN
- bash 명령어
- DCGAN
- bash vs zsh
- AWS
- git commit
- Image to image translation
- AnoGAN
- unsupervised learning
- docker
- ubuntu grep
- ubuntu mount
- Today
- Total
목록git commit (2)
쏴아리의 딥러닝 스터디

git branch, checkout, merge git branch git branch는 독립적으로 작업을 진행하기 위한 개념으로, 각 branch는 다른 brach와 관련 없이 작업을 진행합니다. 보통 master, develop, topic branch를 생성하여 형상관리를 합니다. main branch : 배포용 안정적인 Branch topic branch: 기능 추가 같은 단위 작업을 위한 Branch 1. branch 생성 방법 gitbranch위의명령어로branch를생성할수있습니다.2.현재Branch확인방법git branch 위의 명령어로 현재 branch를 확인할 수 있습니다 . 예제) topic_branch 생성하기 git branch 명령어를 통해 topic_..

git add, git status, git commit, git log git add: staging 영역으로 보내기 git add 명령어는 working directory에 있는 파일을 staging area로 보내는 역할을 수행합니다. gitadd한꺼번에여러파일을stagingarea로보내고싶다면현재폴더를대상으로gitadd를수행할수있습니다.git add . 예제) deepmal.txt 생성 하고 git add 수행 1. staging 영역으로 보낼 파일을 생성합니다. ubuntu에서 nano 명령어를 통해 deepmal.txt를 생성하고, 내용을 작성합니다. $nano deepmal.txt deepmal.txt에 "Hello World!"를 입력 한 뒤, Ctrl +..