From 3051782faeeb0c728fd204ac6fdec6f8d9192a9a Mon Sep 17 00:00:00 2001 From: Chris McCormick Date: Tue, 18 Jan 2022 09:57:38 +0800 Subject: [PATCH] Updated docs with cmd to push different branch. Fixes #221 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1d7e02b..5ea3a04 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ I kept finding myself wanting an Heroku/CloudFoundry-like way to deploy stuff on * Create a `git` SSH remote pointing to your `piku` server with the app name as repo name. `git remote add piku piku@yourserver:appname`. -* Push your code: `git push piku master`. +* Push your code: `git push piku master` (or if you want to push a different branch than the current one use `git push piku release-branch-name`). * `piku` determines the runtime and installs the dependencies for your app (building whatever's required). * For Python, it segregates each app's dependencies into a `virtualenv`. * For Go, it defines a separate `GOPATH` for each app.