Skip to content

Update README.md #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,19 @@ Minimal site containing functional tests for [Codeception Module Symfony](https:

### Installation

1. Clone the repo
1. Clone the repo:
If you're using this project to create a Pull Request to the Symfony Module (see `CONTRIBUTING.md`):
1. Click on the "Fork" button here on this page.
2. Then, in your terminal, do:
```shell
git clone https://github.com/YourUserName/symfony-module-tests.git
cd symfony-module-tests
git remote add upstream https://github.com/Codeception/symfony-module-tests.git
git pull upstream master
git rebase upstream/master
git checkout -b new_feature
```
Otherwise:
```shell
git clone https://github.com/Codeception/symfony-module-tests.git
```
Expand Down