Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 1.03 KB

CONTRIBUTING.md

File metadata and controls

42 lines (29 loc) · 1.03 KB

Contributing

Welcome! If you're looking to help, this document is a great place to start!

Building the project

To build Subspace from source, you will need Go 1.13 or later installed.

git clone [email protected]:subspacecommunity/subspace && cd subspace
make

# run
./subspace

Git workflow

username=$your username
# add your remote/upstream
git remote add $username [email protected]:$username/subspace.git

# update from origin/master
git pull --rebase

# create a branch
git checkout -b my_feature

# push changes from my_feature to your fork.
#    -u, --set-upstream    set upstream for git pull/status
git push -u $username

Go Resources

A few helpful resources for getting started with Go: