forked from liximomo/vscode-sftp
-
-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/Natizyskunk/vscode-sftp
- Loading branch information
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
# Contributing to vscode-sftp | ||
|
||
After you've created a branch on your fork with your changes, it's time to [make a pull request][pr-link]. | ||
|
||
*Please follow the guidelines given below while making a Pull Request to the vscode-sftp* | ||
|
||
## Pull Request Guidelines | ||
|
||
* The Description should not exceed 100 characters. | ||
* Make sure the PR title is in the format of `Add/Remove/Fix <feature>` *for e.g.*: `Add OpenSSH` | ||
* Use a short descriptive commit message. *for e.g.*: ❌`Update Readme.md` ✔ `Add OpenSSH connection Method` | ||
* Search previous Pull Requests or Issues before making a new one, as yours may be a duplicate. | ||
* Please make sure the feature has proper documentation. | ||
* Please make sure you squash all commits together before opening a pull request. If your pull request requires changes upon review, please be sure to squash all additional commits as well. [This wiki page][squash-link] outlines the squash process. | ||
* Target your Pull Request to the `master` branch of the `vscode-sftp` | ||
|
||
Once you’ve submitted a pull request, the collaborators can review your proposed changes and decide whether or not to incorporate (pull in) your changes. | ||
|
||
### Pull Request Pro Tips | ||
|
||
* [Fork][fork-link] the repository and [clone][clone-link] it locally. | ||
Connect your local repository to the original `upstream` repository by adding it as a [remote][remote-link]. | ||
Pull in changes from `upstream` often so that you stay up to date and so when you submit your pull request, | ||
merge conflicts will be less likely. See more detailed instructions [here][syncing-link]. | ||
* Create a [branch][branch-link] for your edits. | ||
* Contribute in the style of the project as outlined above. This makes it easier for the collaborators to merge | ||
and for others to understand and maintain in the future. | ||
|
||
### Open Pull Requests | ||
|
||
Once you’ve opened a pull request, a discussion will start around your proposed changes. | ||
|
||
Other contributors and users may chime in, but ultimately the decision is made by the collaborators. | ||
|
||
During the discussion, you may be asked to make some changes to your pull request. | ||
|
||
If so, add more commits to your branch and push them – they will automatically go into the existing pull request. But don't forget to squash them. | ||
|
||
Opening a pull request will trigger a build to check the validity of all links in the project. After the build completes, **please ensure that the build has passed**. If the build did not pass, please view the build logs and correct any errors that were found in your contribution. | ||
|
||
*Thanks for being a part of this project, and we look forward to hearing from you soon!* | ||
|
||
[branch-link]: <http://guides.github.com/introduction/flow/> | ||
[clone-link]: <https://help.github.com/articles/cloning-a-repository/> | ||
[fork-link]: <http://guides.github.com/activities/forking/> | ||
[oauth-link]: <https://en.wikipedia.org/wiki/OAuth> | ||
[pr-link]: <https://help.github.com/articles/creating-a-pull-request/> | ||
[remote-link]: <https://help.github.com/articles/configuring-a-remote-for-a-fork/> | ||
[syncing-link]: <https://help.github.com/articles/syncing-a-fork> | ||
[squash-link]: <https://github.com/todotxt/todo.txt-android/wiki/Squash-All-Commits-Related-to-a-Single-Issue-into-a-Single-Commit> | ||
|