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
- grep
- vscode
- Source
- Quartz
- plugin
- netsh
- 줄바꿈 문자
- bash
- GIT
- context
- Mac
- profile
- Eclipse
- 단축키
- resource
- Windows 10
- import
- tomcat
- ssh
- IntelliJ
- lsof
- 네트워크
- JavaScript
- find
- port
- xargs
- web.xml
- Windows
- VirtualBox
- maVen
Archives
- Today
- Total
develog
[git] git init --bare 본문
git remote repository 를 생성한다
$ git init --bare
로컬 PC 에서
- 'git init --bare' 로 git 저장소를 만들고 'git push' 테스트 하기
##-----------------------------
## 폴더 생성
## - remote: git repository
## - local1: 로컬 작업영역 1
## - local2: 로컬 작업영역 2
##-----------------------------
WORK_DIR=./
mkdir $WORK_DIR/remote
mkdir $WORK_DIR/local1
mkdir $WORK_DIR/local2
##-----------------------------
## Remote
## - git remote repository 를 생성한다
##-----------------------------
cd $WORK_DIR/remote
mkdir proj1
cd proj1
git init --bare
##-----------------------------
## Local1
## - git init 으로 프로젝트를 초기화하고
## - 파일을 생성 후 커밋하고
## - git repository 에 push 한다
##-----------------------------
cd $WORK_DIR/local1
mkdir proj1
cd proj1
git init
touch git_example_project.txt
git add .
git commit -m 'initial commit'
git remote add origin $WORK_DIR/remote/proj1
git remote -v
git push -u origin master
##-----------------------------
## Local2
## - git clone 으로 프로젝트가 받아지는지 확인
##-----------------------------
cd $WORK_DIR/local2
git clone $WORK_DIR/remote/proj1
'Dev > git' 카테고리의 다른 글
[git] github commit 메시지 수정 (0) | 2022.03.14 |
---|---|
[git] config 기본 셋팅 (0) | 2022.02.17 |
[git] merge (0) | 2021.12.22 |
[git] reset, 커밋 취소 (0) | 2021.10.26 |
[git] 현재 branch 의 변경 내용을 모두 rollback (0) | 2021.10.26 |
Comments