Skip to content

Getting Started

Getting Started

Branches

  • Current development branch: devel
  • Branch namespace for release & development: releases/<release_id>

Pull requests

  • Be sure to open an issue before you start working on a pull request, and discuss your idea(s) with the ansible-avd maintainers before beginning work. This will help prevent wasting time on something that might we might not be able to implement. When suggesting a new feature, also make sure it won’t conflict with any work that’s already in progress.
  • Any pull request which does not relate to an accepted issue will not be approved.
  • All major new functionality must include relevant tests where applicable.
  • When submitting a pull request, please be sure to rebase from the devel branch, rather than a release branch:releases/*. The devel branch is used for ongoing development, while releases/* are used for tagging new stable releases.
  • All code submissions should meet the following criteria (CI will enforce these checks):

    * YAML syntax is valid * Python syntax is valid * All tests pass when run with make sanity * PEP 8 compliance is enforced, with the exception that lines may be greater than 80 characters in length

Adhering to the following this process is the best way to get your work merged:

  • Fork the repo, clone your fork, and configure the remotes:

    # Clone your fork of the repo into the current directory
    git clone https://github.com/<your-username>/ansible-avd
    
    # Navigate to the newly cloned directory
    cd ansible-avd
    
    # Assign the original repo to a remote called "upstream"
    git remote add upstream https://github.com/aristanetworks/ansible-avd.git
    
  • If you cloned a while ago, get the latest changes from upstream:

    git checkout devel
    git pull upstream devel
    
  • Create a new topic branch (off the main project development branch) to contain your feature, change, or fix:

    git checkout -b <topic-branch-name>
    
  • Commit your changes in logical chunks. Please adhere to these git commit message guidelines or your code is unlikely to be merged into the main project. Use Git’s git rebase feature to tidy up your commits before making them public.
  • Locally merge (or rebase) the upstream development branch into your topic branch:

    git pull [--rebase] upstream <dev-branch>
    
  • Push your topic branch up to your fork:

    git push origin <topic-branch-name>
    

Last update: June 7, 2021