From 733f577eeee48d2d0f6cb637966fe9c534527c5d Mon Sep 17 00:00:00 2001 From: zeus Date: Mon, 5 Jul 2021 23:25:51 +0300 Subject: [PATCH] edited README --- README.md | 8 ++++++-- push.sh | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 4931dea..3410bca 100644 --- a/README.md +++ b/README.md @@ -27,13 +27,17 @@ copy docs/build/site 4. Preview the results using your browser > -> http://172.17.0.2:8080 # ip may be dieferent +> http://172.17.0.2:8080 # ip may be different > 5. When you are satisfied with result push them to original the git repository > -> push.sh ["push comment"] +> push.sh [push comment] > You HAVE to use a string litterall otherwise git will only register the first word! + +> +>push.sh "my push comment" +> diff --git a/push.sh b/push.sh index 9b9dfd1..c95267f 100755 --- a/push.sh +++ b/push.sh @@ -1,6 +1,6 @@ #!/bin/sh -if [ ! -z $1 ]; then +if [ ! -z "$1" ]; then comment=$1 git add . git commit -m"$comment"