-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitignore
More file actions
50 lines (42 loc) · 877 Bytes
/
Copy path.gitignore
File metadata and controls
50 lines (42 loc) · 877 Bytes
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
39
40
41
42
43
44
45
46
47
48
49
50
# SPDX-FileCopyrightText: 2025 Leon Pohl <leon.pohl@unibw.de>
#
# SPDX-License-Identifier: Apache-2.0
# --- Bazel output directories ---
bazel-*
!docs/bazel-profiling.md
bazel-out/
bazel-bin/
bazel-testlogs/
bazel-cache/
user.bazelrc
# --- Local Bazel state ---
*.runfiles/
*.log
*.tmp
*.swp
*.lock
# --- IDEs / Editors ---
.vscode/
.idea/
*.iml
*.sublime-workspace
*.sublime-project
# --- Python bytecode ---
__pycache__/
*.pyc
*.pyo
# --- Build artifacts ---
*.o
*.so
*.a
*.exe
# --- Data exclusions and selective retention ---
# Ignore all contents of the 'data/rosbags' directory...
data/rosbags/*
# ...except specific sessions that must be tracked
!data/rosbags/2024-06-26_15-08-50_tas/2024-06-26-15-08-51_short.bag
!data/rosbags/2025-04-28_itsc_albi_pemo_forest/2025-04-28-18-25-09_short.bag
# Exclude other data and log directories
data/streams
data/output
logs