Create a README for your repo

Azure DevOps Services | Azure DevOps Server 2022 - Azure DevOps Server 2019

Your Git repo should have a readme file so that viewers know what your code does and how they can get started using it. Your readme should speak to the following audiences:

  • Users that just want to run your code.
  • Developers that want to build and test your code. Developers are also users.
  • Contributors that want to submit changes to your code. Contributors are both developers and users.

Write your readme in Markdown instead of plain text. Markdown makes it easy to format text, include images, and link as needed to more documentation from your readme.

Here are some great readmes that use this format and speak to all three audiences, for reference and inspiration:

Create an intro

Start off your readme with a short explanation describing your project. Add a screenshot or animated GIF in your intro if your project has a user interface. If your code relies on another application or library, make sure to state those dependencies in the intro or right below it. Apps and tools that run only on specific platforms should have the supported operating system versions noted in this section of the readme.

Help your users get started

Guide users through getting your code up and running on their own system in the next section of your readme. Stay focused on the essential steps to get started with your code. Link to the required versions of any prerequisite software so users can get to them easily. If you have complex setup steps, document those outside your readme and link to them.

Point out where to get the latest release of your code. A binary installer or instructions on using your code through packaging tools is best. If your project is a library or an interface to an API, put a code snippet showing basic usage and show sample output for the code in that snippet.

Provide build steps for developers

Use the next section of your readme to show developers how to build your code from a fresh clone of the repo and run any included tests. Do the following:

  • Give details about the tools needed to build the code and document the steps to configure them to get a clean build.
  • Break out dense or complex build instructions into a separate page in your documentation and link to it if needed.
  • Run through the instructions as you write them in order to verify the instructions would work for a new contributor.

Remember, the developer relying on these instructions could be you after not working on a project for some time.

Provide the commands to run any test cases provided with the source code after the build is successful. Developers lean on these test cases to ensure that they don't break your code as they make changes. Good test cases also serve as samples that developers can use to build their own test cases when adding new functionality.

Help users contribute

The last section of your readme helps users and developers to get involved in reporting problems and suggest ideas to make your code better. Users should be linked to channels where they can open up bugs, request features, or get help using your code.

Developers need to know what rules they need to follow to contribute changes, such as coding/testing guidelines and pull request requirements. If you require a contributor agreement to accept pull requests or enforce a community code of conduct, this process should be linked to or documented in this section. State what license the code is released under and link to the full text of the license.