From 40da7c8cc19098f21d93e8f1720071a64759f9ee Mon Sep 17 00:00:00 2001 From: Pedram Ashofteh Ardakani Date: Sun, 3 May 2020 14:16:41 +0430 Subject: Remove extra spacing before and after code blocks Until now, the extra space made the padding look too big. * Changed this HTML code convention: ```html

some code
``` * to this: ```html
some code
``` And the extra space is gone. --- index.html | 22 +++++++--------------- 1 file changed, 7 insertions(+), 15 deletions(-) (limited to 'index.html') diff --git a/index.html b/index.html index ff5c557..59e661f 100755 --- a/index.html +++ b/index.html @@ -82,19 +82,15 @@

Start building your project in Maneage

To start a new project, simply run these commands to clone it from its Git repository. -


-git clone https://git.maneage.org/project.git     # Clone Maneage, default branch `maneage'.
+                    
git clone https://git.maneage.org/project.git     # Clone Maneage, default branch `maneage'.
 mv project my-project && cd my-project            # Set custom name and enter directory.
 git remote rename origin origin-maneage           # Rename remote server to use `origin' later.
-git checkout -b master                            # Make new `master' branch, start customizing.
-                    
+git checkout -b master # Make new `master' branch, start customizing.

You are now ready to configure and make the raw template with the commands below. If they are successful, you can start customizing it. -


-./project configure    # Build all necessary software from source.
-./project make         # Do the analysis (download data, run software on data, build PDF).
-                    
+
./project configure    # Build all necessary software from source.
+./project make         # Do the analysis (download data, run software on data, build PDF).

See the Customization Checklist in the cloned README-hacking.md file for the next steps to start customizing Maneage for your project.

@@ -108,10 +104,8 @@ git checkout -b master # Make n

  1. Go to the maneage branch and create a new branch from there like below: -
    
    -git checkout maneage
    -git branch -b my-fix
    -                            
    +
    git checkout maneage
    +git branch -b my-fix
  2. Commit your fix over this new branch.
  3. Build a new project on your favorite Git repository (GitLab, BitBucket, or GitHub for example) and assign it to a new Git remote in your project. @@ -119,9 +113,7 @@ git branch -b my-fix You only need to do this once and keep this for future fixes.
  4. Push your branch to that remote: -
    
    -git push my-remote my-fix
    -                            
    +
    git push my-remote my-fix
  5. Submit a link to your fork and the corresponding branch on Savannah. If you are registered on Savannah, you can also submit it as a bug or a task. -- cgit v1.2.1