Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: IonicaBizau/git-url-parse
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 13.1.1
Choose a base ref
...
head repository: IonicaBizau/git-url-parse
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 14.0.0
Choose a head ref
  • 7 commits
  • 7 files changed
  • 3 contributors

Commits on Feb 10, 2023

  1. Copy the full SHA
    85d4d30 View commit details

Commits on Jun 22, 2023

  1. fixed name and organization issue when parsing on the issue url

    Signed-off-by: msivasubramaniaan <msivasub@redhat.com>
    msivasubramaniaan committed Jun 22, 2023
    Copy the full SHA
    2c26c51 View commit details

Commits on Jan 2, 2024

  1. ⬆️ 13.2.0 🎉

    IonicaBizau committed Jan 2, 2024
    Copy the full SHA
    9a923cb View commit details
  2. ⬆️ 14.0.0 🎉

    IonicaBizau committed Jan 2, 2024
    Copy the full SHA
    638bcf4 View commit details
  3. Merge branch 'bugfix/reencode-owner-and-repo-names' of github.com:lfc…

    …yja/git-url-parse into new-version
    IonicaBizau committed Jan 2, 2024
    Copy the full SHA
    4c01a68 View commit details
  4. Merge branch 'fix-name-organization-on-issueURL' of github.com:msivas…

    …ubramaniaan/git-url-parse into new-version
    IonicaBizau committed Jan 2, 2024
    Copy the full SHA
    e810584 View commit details
  5. Updated docs

    IonicaBizau committed Jan 2, 2024
    Copy the full SHA
    2882854 View commit details
Showing with 316 additions and 349 deletions.
  1. +4 −0 .github/FUNDING.yml
  2. +25 −50 CONTRIBUTING.md
  3. +1 −1 LICENSE
  4. +265 −295 README.md
  5. +9 −2 lib/index.js
  6. +1 −1 package.json
  7. +11 −0 test/index.js
4 changes: 4 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
github: ionicabizau
patreon: ionicabizau
open_collective: ionicabizau
custom: https://www.buymeacoffee.com/h96wwchmy
75 changes: 25 additions & 50 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,66 +1,41 @@
# :eight_spoked_asterisk: :stars: :sparkles: :dizzy: :star2: :star2: :sparkles: :dizzy: :star2: :star2: Contributing :star: :star2: :dizzy: :sparkles: :star: :star2: :dizzy: :sparkles: :stars: :eight_spoked_asterisk:
# Contributing :star: :star2: :dizzy:

So, you want to contribute to this project! That's awesome. However, before
doing so, please read the following simple steps how to contribute. This will
make the life easier and will avoid wasting time on things which are not
requested. :sparkles:
So, you want to contribute to this project? That's awesome! However, before doing so, please read the following simple steps on how to contribute. This will make life easier and avoid wasting time on things that are not requested. ✨

## Discuss the changes before doing them
- First of all, open an issue in the repository, using the [bug tracker][1],
describing the contribution you would like to make, the bug you found or any
other ideas you have. This will help us to get you started on the right
foot.
## Discuss the changes before making them
To begin, open an issue in the repository using the [bug tracker][1]. Describe the contribution you'd like to make, the bug you've found, or any other ideas you have. This step will help us get you started on the right track.

- If it makes sense, add the platform and software information (e.g. operating
system, Node.JS version etc.), screenshots (so we can see what you are
seeing).
If it is relevant, include platform and software information (e.g., operating system, Node.JS version, etc.) and screenshots to help us understand what you're experiencing.

- It is recommended to wait for feedback before continuing to next steps.
However, if the issue is clear (e.g. a typo) and the fix is simple, you can
continue and fix it.
We recommend waiting for feedback before proceeding to the next steps. However, if the issue is clear, such as a typo, and the fix is simple, you can go ahead and fix it.

## Fixing issues
- Fork the project in your account and create a branch with your fix:
`some-great-feature` or `some-issue-fix`.
## Fixing Issues
Begin by forking the project to your own account, and create a branch for your fix, naming it either `some-great-feature` or `some-issue-fix`.

- Commit your changes in that branch, writing the code following the
[code style][2]. If the project contains tests (generally, the `test`
directory), you are encouraged to add a test as well. :memo:
Commit your changes to that branch, adhering to the [code style][2]. If the project includes tests (usually located in the `test` directory), we encourage you to add a test as well. :memo:

- If the project contains a `package.json` or a `bower.json` file add yourself
in the `contributors` array (or `authors` in the case of `bower.json`;
if the array does not exist, create it):
If the project includes a `package.json` or a `bower.json` file, add yourself to the `contributors` array (or `authors` in the case of `bower.json`). If the array doesn't exist, create it as shown below:

```json
{
"contributors": [
"Your Name <and@email.address> (http://your.website)"
]
}
```
```json
{
"contributors": [
"Your Name <your@email.address> (http://your.website)"
]
}
```

## Creating a pull request
## Creating a Pull Request
Start by opening a pull request and make sure to reference the initial issue in the pull request message (e.g., *fixes #<your-issue-number>*). Provide a clear and descriptive title to help everyone understand what is being fixed or improved.

- Open a pull request, and reference the initial issue in the pull request
message (e.g. *fixes #<your-issue-number>*). Write a good description and
title, so everybody will know what is fixed/improved.
If applicable, consider adding screenshots, gifs, or any other visual aids that can make it easier to understand the changes you've made.

- If it makes sense, add screenshots, gifs etc., so it is easier to see what
is going on.
## Wait for Feedback
Before accepting your contributions, we will review them. You may receive feedback regarding what needs to be addressed in your modified code. If so, simply continue making commits to your branch, and the pull request will be automatically updated.

## Wait for feedback
Before accepting your contributions, we will review them. You may get feedback
about what should be fixed in your modified code. If so, just keep committing
in your branch and the pull request will be updated automatically.

## Everyone is happy!
Finally, your contributions will be merged, and everyone will be happy! :smile:
Contributions are more than welcome!
## Everyone Is Happy!
Ultimately, your contributions will be merged, and everyone will be delighted! 😄 Contributions are more than welcome!

Thanks! :sweat_smile:



[1]: https://github.com/IonicaBizau/git-url-parse/issues

[1]: /issues
[2]: https://github.com/IonicaBizau/code-style
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015-23 Ionică Bizău <bizauionica@gmail.com> (https://ionicabizau.net)
Copyright (c) 2015-24 Ionică Bizău <bizauionica@gmail.com> (https://ionicabizau.net)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Loading