I work on an ASP.NET MVC web project, and we're developing several features concurrently. Each feature is on its own branch, and to test the site we publish it to a staging area.
However, after it's published I often forget from which branch we published.
Is there any way to inject the git branch name into the HTML somewhere, so the page will display <span>feature/coolNewFeature1</span>
or <span>develop</span>
as a reminder for which codebase is currently on the staging area?