Skip to content

Commit

Permalink
docs(contributing): add extra steps for commiting other's forks
Browse files Browse the repository at this point in the history
  • Loading branch information
xaviml committed Oct 12, 2021
1 parent d491fd9 commit 3fbd156
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,14 @@ git remote add <username> [email protected]:<username>/controllerx.git
Then you will need to fetch, create and checkout the branch:

```shell
git fetch <username> <remote-branch>
git checkout -b <username>-<remote-branch> <username>/<remote-branch>
git fetch <username> <branch>
git checkout -b <username>-<branch> <username>/<branch>
```

Once the changes are commited, you can push with the following command:

```shell
git push <username> HEAD:<branch>
```

## Deployment
Expand Down

0 comments on commit 3fbd156

Please sign in to comment.