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
- Jupyter
- nmap
- appium
- Jupyter Notebook
- ubuntu
- ssh
- sshpass
- PYTHON
- 28015
- openpyxl
- nohup
- Materials
- nGrinder
- create table
- port forwarding
- mysql
- STF_PortForwarding
- GoCD
- centos
- STF
- perfect
- postgresql
- rethinkdb
- SWIFT
- kitura
- appium server
- 실행권한
- ftp
- postgres
- insert
Archives
- Today
- Total
don't stop believing
git 기본 명령 본문
git config 설정
git config --global user.name "Sam Smith"
git config --global user.email sam@example.com
git 초기화
git init
git check out (local repository에 working copy를 만듭니다.)
git clone username@host:/path/to/repository
git clone https://github.com/ochococo/Design-Patterns-In-Swift.git
git에 파일 추가
git add <filename>
git add *
local repository에 commit하기
git commit -m "Commit message"
remote repository에 올리기
git push
git 업데이트
git pull
'Tools > Git & GitLab' 카테고리의 다른 글
git commit sh 만들어 사용하기 (0) | 2018.10.17 |
---|---|
ssh key 생성하고 적용하기 (1) | 2017.12.26 |
Gitlab 프로젝트 만들고 사용해 보기 (0) | 2017.11.09 |
[GitLab] Backup & Restore (0) | 2017.09.04 |
[GitLab] 도메인 변경 (0) | 2017.09.04 |
Comments