터미널을 켠다.
git config --global user.name "sjchoi86"
git config --global user.email "sungjoon.s.choi@gmail.com"
git init
git remote add origin htts://github.com/sjchoi86/tensorflow101.git
git clone https://github.com/sjchoi86/tensorflow101.git
(이 명령어는 git에 있는 것을 불러온다.)
git status
(상태를 확인)
git add readme.txt
(깃에 올릴 파일을 추가한다. 만약 전부 다 이면 git add .)
git commit -m "Add readme.txt"
(커밋, 하지만 아직 올라가진 않았다.)
git remote -v
(현재 origin이 어딘지 확인해보는 명령어)
git push origin master
(실제로 코드를 올리는 명령어)
오류가 났다면
git pull
(이걸 하면 이전에 최신 버젼을 가져온다!)
Reset하기
sudo git reset --hard
이걸 하자. 그리고
sudo git clean
은 절대 하지말자!!
'Enginius > Python&TensorFlow' 카테고리의 다른 글
Convert jupyer-notebook to python files in console (0) | 2016.04.16 |
---|---|
Install TensorFlow with GPU (0) | 2016.04.14 |
JupyterHub on AWS EC2 (0) | 2016.04.08 |
딥러닝 강의 1주차 + VirtualBox에 Ubuntu + Anaconda (4) | 2016.04.08 |
AWS EC2 Ubuntu 사용하기 + Jupyterhub 써보기 (0) | 2016.04.07 |