SMALL
git 기본 사용법.
window용 git program은 https://www.sourcetreeapp.com/ 에서 설치.
기본적인 연동방법은 http://hackersstudy.tistory.com/41 참조.
shell에서는,
1. 기본적으로 git 과 연동.
> git clone http://username@150.123.123.123/git_name/name_rep.git
연동된뒤,
2. file을 다운받을 폴더로 간뒤
> git pull : 저장소 -> local로 갱신.
3. 변경할 파일이 있으면,
> git add * : 파일추가
4. log 남기고, commit 시키기.
> git commit -m "log"
5. 저장소에 저장하기.
> git push
그외. 저장소의 file을 삭제하고 싶으면,
> git rm file_name
LIST
'일 > Tips' 카테고리의 다른 글
/bin/bash^M: bad interpreter: No such file or directory 관련 error (0) | 2016.11.14 |
---|---|
timing slack 발생시, 해결 Tip. - timing 최적화 (0) | 2016.10.26 |
[bug_report] inferring latches for variable "<name>" (0) | 2016.10.21 |
xilinx - ultrascale timing / constraint / implementation 참조. (0) | 2016.10.19 |
fio file generation & split (0) | 2016.08.18 |