Merge pull request #224 from chr15m/update-git-push-docs

Updated docs with cmd to push different branch. Fixes #221
pull/230/head
Rui Carmo 2022-02-05 15:37:33 +00:00 zatwierdzone przez GitHub
commit 569cfeda90
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -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.