Git
-
Git - RemoteGit 2020. 5. 11. 19:48
아래의 내용은 'Pro-Git'을 바탕으로 작성하였습니다. Remote Repository git clone 시 자동으로 origin(remote repo) 등록됨 # 단축이름 및 주소 출력 $ git remote -v origin https://github.com/schacon/ticgit (fetch) origin https://github.com/schacon/ticgit (push) # remote repo 등록 $ git remote add [name] [url] # git fetch or pull $ git fetch [remote_name] $ git pull [remote_name] # git push $ git push [remote_name] [branch_name] git fetch ..
-
Git - Local 기초Git 2020. 5. 11. 19:46
Ubuntu(16.04 - Docker)에서 git 사용 Docker volume 설정 # docker volume 생성 $ docker volume create --name dock_volume # docker volume 확인 $ docker volume ls DRIVER VOLUME NAME local dock_volume # docker container 생성 $ docker run -it --name ubuntu_test -v dock_volume:/root/ ubuntu:16.04 $ docker container ls CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 32e7f7f30073 ubuntu:16.04 "/bin/bash" About ..