aboutsummaryrefslogtreecommitdiff
path: root/README-hacking.md
diff options
context:
space:
mode:
authorMohammad Akhlaghi <mohammad@akhlaghi.org>2019-04-15 19:13:53 +0100
committerMohammad Akhlaghi <mohammad@akhlaghi.org>2019-04-15 19:13:53 +0100
commit57c4a65cd6dafe1c9a9f2961576d438c9394cd35 (patch)
tree1b8edcae18078dea1ac13a64bf41ea726ce1af66 /README-hacking.md
parent49c7f49c344b28afe70c6df15cf400b395bb7e93 (diff)
Minor typo corrections in README-hacking.md
In two places, I had mistakenly put a <'> instead of a <`>, causing bad highlighting in the markdown rendering. They have been corrected. Also, one long line in was broken up into several.
Diffstat (limited to 'README-hacking.md')
-rw-r--r--README-hacking.md10
1 files changed, 7 insertions, 3 deletions
diff --git a/README-hacking.md b/README-hacking.md
index 49554c4..b11f325 100644
--- a/README-hacking.md
+++ b/README-hacking.md
@@ -516,7 +516,7 @@ get more advanced in later stages of your work.
(usually starting with `git@` and ending in `.git`), put this URL in
place of `XXXXXXXXXX` in the first command below. With the second
command, "push" your `master` branch to your `origin` remote, and
- (with the `--set-upstream' option) set them to track/follow each
+ (with the `--set-upstream` option) set them to track/follow each
other. However, the `template` branch is currently tracking/following
your `template-origin` remote (automatically set when you cloned the
template). So when pushing the `template` branch to your `origin`
@@ -552,7 +552,11 @@ get more advanced in later stages of your work.
- Delete marked part(s) in `configure`.
- Delete the `reproduce/software/config/gnuastro` directory.
- - Delete `gnuastro` from the value of `top-level-programs` in `reproduce/software/make/high-level.mk`. You can keep the rule to build `gnuastro`, since its not in the `top-level-programs` list, it (and all the dependencies that are only needed by Gnuastro) will be ignored.
+ - Delete `gnuastro` from the value of `top-level-programs` in
+ `reproduce/software/make/high-level.mk`. You can keep the rule to
+ build `gnuastro`, since its not in the `top-level-programs` list, it
+ (and all the dependencies that are only needed by Gnuastro) will be
+ ignored.
- Delete marked parts in `reproduce/analysis/make/initialize.mk`.
- **Other dependencies**: If there are any more software that you don't
@@ -650,7 +654,7 @@ get more advanced in later stages of your work.
- **Push to the remote**: Push your first commit and its tag to your
remote repository with these commands. Since we have setup your
- `master' branch to follow `origin/master`, you can just use `git push`
+ `master` branch to follow `origin/master`, you can just use `git push`
from now on.
```shell