일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- LGFlatron
- 실업급여동영상퀴즈
- askii
- 안드로이드
- 리눅스
- 여행
- 인터넷우회
- ClubMed
- 실업급여온라인교육정답
- Eclipse
- OSDLock-loosening
- W2453V
- 에러
- PJM-F3000
- 무음 설정
- Android
- SBS100
- linux
- 눈꽃 사진
- 기본 알람
- 직무 역량
- 머시멜로
- LGFlatronOSD잠금해제
- mainthread
- git setup
- OSD잠금해제
- 실업급여 신청 방법
- 가성비프로젝터
- OSD잠금
- error
- Today
- Total
JJ's blog
Git 설정 본문
- 개인 노트
git cache 지우기
git rm -r --cached .
git add .
git commit -m "Fixed cached files for gitignore"
.gitignore
test/
*/CMakeFiles/
*/build/
*/bin/
ccs/build/
ccs/lib/
ccs/bin/
*.cmake
1. mkdir "OTA 개인 개발 폴더"
2. cd 위 폴더명
3. 폴더 내 git생성
git init
4. 리모트 git 연결 (/data5/이하 경로가 원격 master이고 그 git을 origin에 연결."마스터git이라 호칭" )
git remote add origin /data5/home/jsm8318/git-ota-0618
git remote add origin ssh://본인아이디@172.21.24.221:2100/data5/home/jsm8318/git-ota-0618
5. origin 에서 정보 긁어오기.
git fetch -a
6. origin(즉, "마스터git")의 master branch를 동일한 이름으로 local branch생성하여 가져오기.
git checkout -t remotes/origin/master
7. branch 확인
git branch -a
8. 현재 반영 상태 확인
git log
9. 로컬 커밋과 변경점 확인
git status
10-. 파일 변경
vi aa후 변경
10-. 파일 추가
vi "본인이름 파일 추가"
10. 변경된 파일이 있을경우 확인
git diff
11. 추가된 파일 추가.
git add .
12. 상태 확인
git status
13. 커밋 (메시지와 함께)
git commit -m "test cc"
14. 로컬master branch의 내용을 원격origin("마스터git")에 반영.
git push origin master
'Technology > LINUX' 카테고리의 다른 글
[Linux] samba (0) | 2019.10.08 |
---|---|
[저장용] Yocto Project 사용법 요약 (0) | 2019.07.03 |
리눅스 $JAVA_HOME 환경변수 설정 (0) | 2019.06.18 |
[GENIVI] CommonAPI 설치 하기 (0) | 2019.06.14 |
Ubuntu One account (0) | 2019.06.12 |