We want to make contributing to this project as easy and as transparent as possible, whether it's:
-
Reporting a bug 🐛
-
Submitting a fix 🔎
-
Proposing new features 💡
If you wish to contribute to this project, please raise an issue and wait for the project maintainers to approve it or give feedback before making a change.
This documentation contains a set of guidelines to help you during the contribution process. We are happy to welcome all the contributions from anyone willing to improve/add new scripts to this project.
- Download and install the latest stable version of Git 📥 for version control
- Create a Github Account 📇
1. Fork this repository.
To make a local copy of the forked repository, let’s first open up a terminal window.
We’ll use the git clone
command along with the URL that points to your fork of the repository.
You can alternatively copy the URL by clicking on the green “Code” button from your repository page. Once you click the button, you’ll be able to copy the URL by clicking the binder button next to the URL
You can copy the URL by clicking on the green “Code” button from your repository page. Once you click the button, you’ll be able to copy the URL by clicking the binder button next to the URL
Once we have the URL, we’re ready to clone the repository. To do this, we’ll combine the git clone command with the repository URL from the command line in a terminal window:$ git clone https://github.com/your-username/Team-6.git
$ cd Team-6/
We'll create a new branch with the git branch command. Try to name it descriptively so that others working on the project understand what you are working on.
$ git branch new-branch
Now that our new branch is created, we will switch over to it using the git checkout command:
$ git checkout new-branch
Switched to branch 'new-branch'
At this point, you can now modify existing files or add new files to the project on your branch.
Once you have modified existing files or added new files to the project, you can add them to your local repository, which you can do with the git add command. Let’s add the -A flag to add all changes that we have made:
$ git add -A
or
$ git add .
-
Comment any new code addition(s)
-
Do not mess up the directory structure
-
Preview your changes and test them properly before proceding ahead
The commit message is an important aspect of your code contribution; it helps the other contributors fully understand the change you have made, why you made it, and how significant it is. Additionally, commit messages to provide a historical record of the changes for the project at large, helping future contributors along the way.
If you have a very short message, you can record that with the -m flag and the message in quotes:
Example:
$ git commit -m "Updated Readme.md"
[main (root-commit) e024518] Updated Readme.md
1 file changed, 1 insertion(+)...
$ git push --set-upstream origin new-branch
Next up, you’ll have to specify a new remote upstream repository for us to sync with the fork. This will be the original repository that you forked from. you’ll have to do this with the git remote add command.
git remote add upstream https://github.com/your-username/Team-6.git
In this example, upstream
is the short name we have supplied for the remote repository since in terms of Git, “upstream” refers to the repository that you cloned from. If you want to add a remote pointer to the repository of a collaborator, you may want to provide that collaborator’s username or a shortened nickname for the short name.
Once you have configured a remote that references the upstream and original repository on GitHub, you are ready to sync your fork of the repository to keep it up-to-date.
To sync your fork, from the directory of your local repository in a terminal window, you’ll have to use the git fetch
command to fetch the branches along with their respective commits from the upstream repository. Since you used the short name “upstream” to refer to the upstream repository, you’ll have to pass that to the command:
git fetch upstream
Switch to the local main branch of our repository:
git checkout main
Switched to branch 'main'
Now merge any changes that were made in the original repository’s main branch, that you will access through your local upstream/main branch, with your local main branch:
git merge upstream/main
At this point, you are ready to make a pull request to the original repository.
Navigate to your forked repository and press the Create Pull Request
. Also add an appropriate title and description to your pull request that explains your changes and efforts done.