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
- 28015
- appium
- GoCD
- nGrinder
- port forwarding
- rethinkdb
- mysql
- Jupyter Notebook
- STF_PortForwarding
- SWIFT
- perfect
- ftp
- sshpass
- kitura
- postgresql
- STF
- nohup
- create table
- nmap
- 실행권한
- openpyxl
- insert
- appium server
- ssh
- centos
- PYTHON
- ubuntu
- Jupyter
- postgres
- Materials
Archives
- Today
- Total
목록실행권한 (1)
don't stop believing
git commit sh 만들어 사용하기
내부에서 다양한 환경에서 테스트해야 할 때가 있고 python script를 여러 server에 전달할 때 gitlab을 사용합니다.이때 commit과 push를 자주 하는데 sh 파일로 만들어 사용하면 편할 듯 합니다. 저는 commit.sh 파일을 만들고 아래와 같이 추가했습니다. #!/bin/sh # 수정된 파일을 모두 commit 후 push 합니다. # commit message는 input으로 받습니다. message="" if [ "$1" = "" ] then message="Tongchun is too busy to write commit message." else message=$1 fi git add --all git commit -m "$message" git push -u origi..
Tools/Git & GitLab
2018. 10. 17. 11:16