2013-07-06 19:36:30 -04:00
---
title: "Contributing to Hugo"
2013-08-17 08:34:25 -04:00
date: "2013-07-01"
2013-12-10 19:38:52 -05:00
aliases: ["/doc/contributing/", "/meta/contributing/"]
groups: ["community"]
2013-10-26 02:18:14 -04:00
groups_weight: 30
2013-07-08 17:57:01 -04:00
---
2013-07-04 11:32:55 -04:00
2013-12-10 22:23:20 -05:00
We welcome all contributions. Feel free to pick something from the roadmap
2013-08-17 08:34:25 -04:00
or contact [spf13 ](http://spf13.com ) about what may make sense
2013-12-10 22:23:20 -05:00
to do next. Go ahead and fork the project and make your changes. *We encourage pull requests to discuss code changes.*
2013-08-03 03:30:34 -04:00
2013-12-10 22:23:20 -05:00
When you're ready to create a pull request, be sure to:
* Have test cases for the new code. If you have questions about how to do it, please ask in your pull request.
* Run `go fmt`
* Squash your commits into a single commit. `git rebase -i` . It's okay to force update your pull request.
* Make sure `go test ./...` passes, and go build completes. Our Travis CI loop will catch most things that are missing. The exception: Windows. We run on windows from time to time, but if you have access please check on a Windows machine too.
## Contribution Overview
2013-12-10 19:38:52 -05:00
1. Fork Hugo from https://github.com/spf13/hugo
2013-07-04 11:32:55 -04:00
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
2013-12-10 19:38:52 -05:00
4. Commit passing tests to validate changes.
2013-12-10 22:23:20 -05:00
5. Run `go fmt`
6. Squash commits into a single (or logically grouped) commits (`git rebase -i`)
7. Push to the branch (`git push origin my-new-feature`)
8. Create new Pull Request
2013-12-10 19:38:52 -05:00
2013-08-03 03:30:34 -04:00
2013-12-10 19:38:52 -05:00
# Building from source
2013-08-03 03:30:34 -04:00
### Clone locally (for contributors):
git clone https://github.com/spf13/hugo
cd hugo
go get
2013-08-17 08:34:25 -04:00
Because go expects all of your libraries to be found in either
$GOROOT or $GOPATH, it's helpful to symlink the project to one
2013-08-03 03:30:34 -04:00
of the following paths:
* ln -s /path/to/your/hugo $GOPATH/src/github.com/spf13/hugo
* ln -s /path/to/your/hugo $GOROOT/src/pkg/github.com/spf13/hugo
### Running Hugo
cd /path/to/hugo
go install github.com/spf13/hugo/hugolibs
go run main.go
### Building Hugo
cd /path/to/hugo
go build -o hugo main.go
mv hugo /usr/local/bin/