> ## Documentation Index
> Fetch the complete documentation index at: https://anaconda.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Editing a project

export const Danger = ({children}) => {
  return <div class="callout my-4 px-5 py-4 overflow-hidden rounded-2xl flex gap-3 border danger-admonition dark:danger-admonition" data-callout-type="danger">
      <div class="mt-0.5 w-4">
        <svg width="14" height="14" viewBox="0 0 14 14" fill="rgb(239, 68, 68)" xmlns="http://www.w3.org/2000/svg" class="w-4 h-4 text-sky-500" aria-label="Danger">
          <path fill-rule="evenodd" clip-rule="evenodd" d="M7 1.3C10.14 1.3 12.7 3.86 12.7 7C12.7 10.14 10.14 12.7 7 12.7C5.48908 12.6974 4.0408 12.096 2.97241 11.0276C1.90403 9.9592 1.30264 8.51092 1.3 7C1.3 3.86 3.86 1.3 7 1.3ZM7 0C3.14 0 0 3.14 0 7C0 10.86 3.14 14 7 14C10.86 14 14 10.86 14 7C14 3.14 10.86 0 7 0ZM8 3H6V8H8V3ZM8 9H6V11H8V9Z"></path>
        </svg>
      </div>
      <div class="text-sm prose min-w-0 w-full">
        {children}
      </div>
    </div>;
};

After you have created your project so that it appears in your **Projects** list, you can open a project session to make changes to the project.

<Frame>
  <img src="https://mintcdn.com/anaconda-29683c67/GAawxvWy-HUVSCqf/images/project_open_session.png?fit=max&auto=format&n=GAawxvWy-HUVSCqf&q=85&s=7029c2217219eb3b528a2e07205dbfe7" alt="" width="2446" height="960" data-path="images/project_open_session.png" />
</Frame>

**To edit a project:**

1. Click the **Open session** <Icon icon="code" iconType="light" /> icon to open the project in the editor specified the project.

2. Make your changes to the project, and save them locally. A badge is displayed on the **Commit Changes** <Icon icon="cloud-arrow-up" iconType="regular" /> icon to indicate that you’ve made changes that haven’t been committed to the server.

   <Frame>
     <img src="https://mintcdn.com/anaconda-29683c67/6fJRxAwYs9izUc34/images/commit_tips.png?fit=max&auto=format&n=6fJRxAwYs9izUc34&q=85&s=aa782b4165e3c81be9e77ad1449b4726" alt="" width="2564" height="1328" data-path="images/commit_tips.png" />
   </Frame>

3. When you’re ready to update the repository with your changes, click the icon to [commit your changes](./commit-changes). If the project is shared, others will then be able to to access your changes, See [collaborating on projects](./collaborate) for important things to consider when working with others on shared projects.

4. When you’re done working with the project, click the **Stop session** <Icon icon="stop" iconType="light" /> icon. The session is listed in the **Audit Trail** for the project.

You can also leave a project session open, and click the **Return to session** <Icon icon="file-code" iconType="light" /> when you’re ready to resume work.

<Tip>
  See [Developing your project](./dependencies) to learn how to manage the
  dependencies for your project, so you can run it and deploy it.
</Tip>
