diff --git a/website/docs/guides/bleeding-edge.mdx b/website/docs/guides/bleeding-edge.mdx index 5fd539a70..77ba5ebc8 100644 --- a/website/docs/guides/bleeding-edge.mdx +++ b/website/docs/guides/bleeding-edge.mdx @@ -28,4 +28,14 @@ On 'nix: To revert back to a stable version, run: -`go install github.com/wailsapp/wails/v2/cmd/wails@latest` \ No newline at end of file +`go install github.com/wailsapp/wails/v2/cmd/wails@latest` + +## Testing a Branch + +If you want to test a branch, follow the instructions above, but ensure you switch the branch you want to test before installing: + +- `git clone https://github.com/wailsapp/wails` +- `git checkout -b branch-to-test --track origin/branch-to-test +- `cd wails/v2/cmd/wails` +- `go install` +