Skip to content

Commit

Permalink
Merge pull request #27 from sappelhoff/relprod
Browse files Browse the repository at this point in the history
revert clone instructions; instead point out requirements
  • Loading branch information
franklin-feingold authored Aug 12, 2019
2 parents 9e3e341 + f6bb121 commit c89063d
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions Release_Protocol.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,24 @@ When it is time to release, use a pull request to put the repository into a rele
allowing testing and edits prior to merging to master.
The following procedure ensures a predictable release.

The protocol assumes that you have a [fork](https://help.github.com/en/articles/fork-a-repo)
of the bids-standard/bids-specification repository and have [cloned](https://help.github.com/en/articles/cloning-a-repository)
your fork locally to a directory called `bids-specification`.

### 1. Fetch the latest version of the [master branch of the BIDS-specification](https://github.com/bids-standard/bids-specification/tree/master)

You should have a remote, which we will call `upstream`, for the [
bids-standard/bids-specification](https://github.com/bids-standard/bids-specification/) repository:
You should have a remote, which we will call `upstream`, for the
[bids-standard/bids-specification](https://github.com/bids-standard/bids-specification/)
repository:

```Shell
$ git remote get-url upstream
git@github.com:bids-standard/bids-specification.git
```

If you do not, clone the Master branch of the BIDS-specification and add it to `upstream` with:
If you do not, add it with:

```Shell
$ git clone https://github.com/bids-standard/bids-specification.git
$ cd bids-specification
$ git remote add upstream git@github.com:bids-standard/bids-specification.git
```
Expand Down Expand Up @@ -60,7 +64,7 @@ discrepancies is reduced.

```Shell
$ git add src/CHANGES.md mkdocs.yml
$ git commit -m 'REL: v1.2.0`
$ git commit -m 'REL: v1.2.0'
$ git push -u upstream rel/1.2.0
```

Expand Down

0 comments on commit c89063d

Please sign in to comment.