diff options
author | Jason Bramwell <jb2cool@gmail.com> | 2020-02-09 20:20:25 +0000 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-02-09 14:40:40 -0800 |
commit | 1d73a2b84a8bcc4fcf18609795ba3f07c6643d8a (patch) | |
tree | 41a7e2235c2a0f1d7ceb3daea51387c785e63a11 /CONTRIBUTING.md | |
parent | ba201eabc790152d422b9b93095d829fa74ccc31 (diff) | |
download | subsurface-1d73a2b84a8bcc4fcf18609795ba3f07c6643d8a.tar.gz |
documentation: break git pull command into three separate commands
The contribution instructions originally had the cd, git checkout and git pull
all on one command this is not allowed and gave a syntax/command error.
When I looked at the CONTRIBUTING.md file the commands were on three separate
lines it was just the markdown backticks that were missing from showing up as
three separate lines. I have simply wrapped each of these lines in its own
backticks.
Signed-off-by: Jason Bramwell <jb2cool@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'CONTRIBUTING.md')
-rw-r--r-- | CONTRIBUTING.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6d80021d7..eb0738680 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -13,9 +13,9 @@ If you would like to contribute patches that fix bugs or add new features, that Here is a very brief introduction on creating commits that you can either send as [pull requests][6] on our main GitHub repository or send as emails to the mailing list. Much more details on how to use git can be found at the [git user manual][7]. Start with getting the latest source (look at the [Building Page][8] to find out how). -`cd subsurface -git checkout master -git pull` +`cd subsurface` +`git checkout master` +`git pull` ok, now we know you're on the latest version. Create a working branch to keep your development in: `git checkout -b devel` Edit the code (or documentation), compile, test… then create a commit: |