35 lines
846 B
Markdown
35 lines
846 B
Markdown
``` shell
|
|
|
|
# clone
|
|
git clone http://123.111.146.235:9070/MonHun/EyeGW-ASDE_New.git # 저장소 경로
|
|
|
|
|
|
# push
|
|
git config --global user.name "MonHun"
|
|
git config --global user.email "mh@monhun.com"
|
|
|
|
# safe directory 등록
|
|
git config --global --add safe.directory /storage/self/primary/Movies/GitRepositories/Obsidian
|
|
|
|
## 서버의 내용을 로컬로 가져온다.
|
|
git pull origin main # 브런치 이름 (main, master)
|
|
### 계정과 패스워드 입력
|
|
|
|
## 로컬의 새로 추가된 파일들을 '추가'
|
|
git add .
|
|
## 변경된 내용 커밋
|
|
git commit -m "커밋 메시지"
|
|
git push origin main # 브런치 이름 (main, master)
|
|
|
|
|
|
```
|
|
|
|
#### termux git push script
|
|
```shell
|
|
cd /data/data/com.termux/files/home/storage/movies/GitRepositories/Obsidian
|
|
git pull origin main
|
|
git add .
|
|
git commit -m "G-TAP Termux Commit"
|
|
git push origin main
|
|
|
|
``` |