Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,6 @@
[submodule "third_party/xsimd"]
path = third_party/xsimd
url = https://github.com/xtensor-stack/xsimd.git
[submodule "third_party/arrow"]
path = third_party/arrow
url = https://github.com/apache/arrow.git
8 changes: 8 additions & 0 deletions GIT_RULES.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
Repository Git Rules

- Never use `git add -A` or `git add .` to stage changes.
- Stage only specific files: `git add path/to/file` or use `git add -p` to interactively select hunks.
- Review changes before committing: `git status --porcelain`, `git diff` and `git diff --staged`.
- Keep commits focused and small; prefer descriptive commit messages.
- If you accidentally commit unwanted files, use `git reset --mixed HEAD~1` and then selectively stage the intended files.
- When in doubt, ask before running broad git commands.
Loading