2024-03-03 21:55:21 +08:00
|
|
|
|
# 忽略VScode配置文件
|
2024-03-07 17:46:42 +08:00
|
|
|
|
.vscode/
|
2024-03-03 21:55:21 +08:00
|
|
|
|
|
|
|
|
|
# 忽略临时文件
|
|
|
|
|
# 这意味着任何文件名以 temp 开头的文件都不会被添加到Git的版本控制中,从而避免了将这些临时文件提交到代码仓库中。
|
|
|
|
|
# temp*
|
2024-03-07 17:46:42 +08:00
|
|
|
|
tmp/
|
2024-03-03 21:55:21 +08:00
|
|
|
|
# 忽略所有 .pyc 文件
|
|
|
|
|
*.pyc
|
2024-03-07 17:46:42 +08:00
|
|
|
|
*.egg-info/
|
|
|
|
|
__pycache__/
|
2024-03-03 21:55:21 +08:00
|
|
|
|
|
|
|
|
|
# 忽略所有 .DS_Store 文件(macOS系统生成的文件)
|
|
|
|
|
.DS_Store
|
|
|
|
|
|
|
|
|
|
# 忽略不可参考的训练数据
|
2024-03-07 17:46:42 +08:00
|
|
|
|
/runs/gait-conditioned-agility/2024*/
|
|
|
|
|
/runs/gait-conditioned-agility/pretrain-go2/
|
|
|
|
|
|
2024-03-10 20:01:42 +08:00
|
|
|
|
go2_gym_deploy/build/
|
|
|
|
|
go2_gym_deploy/unitree_sdk2_bin/library/unitree_sdk2/build/
|