-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgit_usage_guide.txt
More file actions
39 lines (31 loc) · 1.18 KB
/
git_usage_guide.txt
File metadata and controls
39 lines (31 loc) · 1.18 KB
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
32
33
34
35
36
37
38
[🚀 AutonomousVehiclePlatform - Git 사용 가이드]
1. 작업 시작 전 최신 상태로 동기화
------------------------------------------------
cd ~/workspace/AutonomousVehiclePlatform
git pull
2. 로컬에서 작업 (코드 수정, launch 파일, 설정 등)
------------------------------------------------
- 필요한 파일을 생성, 수정 또는 삭제하세요.
3. Git에 변경사항 반영
------------------------------------------------
git status # 변경 사항 확인
git add . # 전체 변경 사항 추가
git commit -m "작업 메시지 작성"
git push # GitHub에 업로드
4. 자동 생성 폴더는 무시됨 (.gitignore 덕분에)
------------------------------------------------
- build/
- install/
- log/
- __pycache__/
- .vscode/
5. 예시: 새 폴더/기능 추가 시
------------------------------------------------
git add ws_ugv_control/src/new_feature_node/
git commit -m "Add new feature node for UGV path correction"
git push
6. 주의사항
------------------------------------------------
- 작업 전에는 항상 git pull
- 커밋 메시지는 짧고 명확하게
- git status로 변경 내용 항상 확인