> For the complete documentation index, see [llms.txt](https://oscar-1.gitbook.io/anacondast3-developers-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://oscar-1.gitbook.io/anacondast3-developers-documentation/getting_involved/commits_guidelines.md).

# Commits Guidelines

Before to send your pull request you have to follow the following general rules.

1. Generally you are not going to do a single big commit with all your changes while you are working in your code. Normally you are going to have safe points commits, merges/rebases and other information that is useful for your development process but doesn't add any useful information to the project if you send your pull request with all those commits on it. First you have to squash the commits into a single commit with a really good commit message. The general rule to follow is that **every commit should be able to be used as an isolated cherry pick**.
2. Your message has to be descriptive and useful. First line should be a descriptive sentence about what the commit is doing. It has to be **clear and fully understandable** what the full commit is going to do just reading that single line.
3. You have to include the issue number prefixed with `#` at the end of the first line
4. The next line should be a blank line followed by an enumerated list with the commit details
5. Add the right keyworkds for the commit as described in [Closing issues via commit messages](https://help.github.com/articles/closing-issues-via-commit-messages) in the GitHub documentation.

Finally you have to get a commit message like this one:

```
Adds <feature description> to anaconda. Resolves #1936 and #Fixes #1941

    * Addition 1
    * Fix 1
    * Change 1
    * Deprecates 1
    * Deprecates 2
    ...
```

For detailed information refer to the [Git Workflow](https://sandofsky.com/blog/git-workflow.html) guidelines that anaconda project follow since version 1.3.5


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://oscar-1.gitbook.io/anacondast3-developers-documentation/getting_involved/commits_guidelines.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
