Skip to content

Latest commit

 

History

History
50 lines (38 loc) · 1.18 KB

CONTRIBUTING.md

File metadata and controls

50 lines (38 loc) · 1.18 KB

Guidelines for Contibution

For all the bugs and improvement, first generate an issue, and then if you wish to resolve, do generate a pull request. If you only know the bug or wish us to resolve, then only generate an issue for the same.

If you wish to contribute generate a pull request mentioning what you have updated.

Open for Contribution

  1. Fork the repository and then clone it. For cloning command is:
$ git clone "https://github.com/<username>/shell-scripting"
  1. Do changes and stage them:
$ git add <filename>
  1. Commit you changes with a commit message:
$ git commit -m "<message>"
  1. Push changes to your forked repository:
$ git push -u origin branchname
  1. Create a pull request to the upstream repository.

Synchronize forked repository with Main repository (Needed if creating a branch)

  1. Create upstream as our repository:
$ git remote add upstream "https://github.com/kshitizsaini113/shell-scripting"
  1. Fetch changes from main repository:
$ git fetch upstream
  1. Merge changes after being fetched:
$ git merge upstream/master
  1. Push changes to your forked repository:
$ git push -f origin master