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

README.md file Updated #387

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
20 changes: 11 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,26 +30,28 @@ Contributing Contributions are always welcome!
1. Fork this repository.
2. Clone your forked copy of the project.
``` git clone https://github.com/your-username/jobproject.git```
3. Add reference to original repository,use the following command
3. Change the directory to the current working folder:
``` cd jobproject```
4. Add reference to original repository,use the following command
``` git remote add upstream https://github.com/your-username/jobproject.git ```
4. Check the remotes for this repository,use following command.
5. Check the remotes for this repository,use following command.
```git remote -v```

5. Always take a pull from the upstream repository to your main branch
6. Always take a pull from the upstream repository to your main branch
to keep it up-to-date with the main
```git pull upstream main```
6. Create a new branch.
7. Create a new branch.
``` git checkout -b <your_branch_name>```

7. You are all set ! Perform your desired changes to the code base.
8. Track your changes.
8. You are all set ! Perform your desired changes to the code base.
9. Track your changes.
```git add .```
9. Commit your changes.
10. Commit your changes.
```git commit -m "relevant commit message"```
10. Push the committed changes in your feature branch to your remote
11. Push the committed changes in your feature branch to your remote
repo.
``` git push -u origin <your_branch_name>```
11. To create a pull request, click on "Compare and pull requests".
12. To create a pull request, click on "Compare and pull requests".
Please ensure you compare your feature branch to the desired branch
of the repo you are suppose to make a PR to.
***
Expand Down