Skip to content
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

fix typos and broken links in contribution guides #425

Merged
merged 1 commit into from
Oct 5, 2023
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,9 @@ View our in-line citations in the [Citations](docs/citations.md) document.

## Contributing

* [Contributing Guidelines](https://github.com/VerisimilitudeX/DNAnalyzer/blob/main/docs/Contribution%20Guideline/Contribution_Guideline.md)
* [Contributing Guidelines](./docs/contributing/Contribution_Guidelines.md)

* [How To Use Git](https://github.com/VerisimilitudeX/DNAnalyzer/blob/main/docs/contributing/CONTRIBUTING.md)
* [How To Use Git](./docs/contributing/CONTRIBUTING.md)

## Terms of Use

Expand Down
10 changes: 5 additions & 5 deletions docs/contributing/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Move to this folder for all other commands.

Let us now add a reference to the original 'DNAnalyzer' repository using:

`$ git remote add upstream https://github.com/theabhishek07/DNAnalyzer.git`
`$ git remote add upstream https://github.com/VerisimilitudeX/DNAnalyzer.git`

This adds a new remote named **_upstream_**.

Expand All @@ -38,8 +38,8 @@ Examine the modifications using:
$ git remote -v
origin https://github.com/Your_Username/DNAnalyzer.git (fetch)
origin https://github.com/Your_Username/DNAnalyzer.git (push)
upstream https://github.com/theabhishek07/DNAnalyzer.git (fetch)
upstream https://github.com/theabhishek07/DNAnalyzer.git (push)
upstream https://github.com/VerisimilitudeX/DNAnalyzer.git (fetch)
upstream https://github.com/VerisimilitudeX/DNAnalyzer.git (push)
```

## 3. Sync with the Remote 🔄
Expand Down Expand Up @@ -110,5 +110,5 @@ push - u
origin < branchname >
```

Finally, in your browser, navigate to your repository and click `Contribute` amd then `Open Pull Request`. There, please
provide a title and description, with brevity, that describe your much-appreciated effort.
Finally, in your browser, navigate to your repository and click `Contribute` and then `Open Pull Request`. There, please
provide a title and description, with brevity, that describe your much-appreciated effort.
7 changes: 3 additions & 4 deletions docs/contributing/Contribution_Guidelines.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,11 @@
read [Contributing_Guidelines.md]((https://github.com/VerisimilitudeX/DNAnalyzer/blob/main/Contributing_Guidelines.md))
and [CODE_OF_CONDUCT.md]((https://github.com/VerisimilitudeX/DNAnalyzer/blob/main/CODE_OF_CONDUCT.md)).

- Create an issue of the project or a feature you would like to add in the project and get the task assigned for
yourself.(Issue can be any bug fixes or any feature you want to add in this project).
- Create an issue of the project or a feature you would like to add in the project and get the task assigned to yourself. (Issue can be any bug fixes or any feature you want to add in this project).

- Fork the repo to your Github.<br/>

- Clone the Repo by going to your local Git Client in a particular local folder in your local machine by using this
- Clone the repo by going to your local Git Client in a particular local folder in your local machine by using this
command with your forked repository link in place of below given link: <br/>
`git clone https://github.com/VerisimilitudeX/DNAnalyzer`
- Create a branch using below command.
Expand All @@ -21,7 +20,7 @@
- Add your code in your local machine folder.
`git add . `
- Commit your changes.
`git commit -m"<add your message here>"`
`git commit -m "<add your message here>"`
- Push your changes.
`git push --set-upstream origin <your branch name>`

Expand Down