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

Update README.md #201

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
43 changes: 30 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,31 +25,48 @@ Welcome to our Job Portal Project! This project aims to create a user-friendly p
***
**Getting Started**

Contributing Contributions are always welcome!
Contributions are always welcome!

1. Fork this repository.

2. Clone your forked copy of the project.
``` git clone htpps://github.com/your-username/jobproject.git```

git clone htpps://github.com/your-username/jobproject.git

3. Add reference to original repository,use the following command
``` git remote add upstream htpps://github.com/your-username/jobproject.git ```
4. Check the remotes for this repository,use following command.
```git remote -v```

git remote add upstream htpps://github.com/your-username/jobproject.git

4. 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
to keep it up-to-date with the main
```git pull upstream main```
4. 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.
``` git checkout -b <your_branch_name>```

git checkout -b <your_branch_name>

7. You are all set ! Perfom your desired changes to the code base.

8. Track your changes.
```git add .```

git add .

9. Commit your changes.
```git commit -m "relevant commit message"```

git commit -m "relevant commit message"

10. 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".

git push -u origin <your_branch_name>

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