Fork and clone the Repository
git clone https://github.com/<Your Username>/Placement-Cell-Fusion.git
Install the required modules
npm install
Run the development server:
npm run dev
Open http://localhost:3000 with your browser to see the result.
-
Navigate to the repository's directory:
cd <repository-directory>
Skip this step if you have already opened the terminal or git bash in the repository's directory.
-
Create a new branch for your pull request:
git branch <new-branch-name>
-
To Switch to New created branch
git checkout -b <new-branch-name>
-
Make your changes.
-
Stage and commit your changes:
git add . git commit -m "Your commit message here"
-
Replace "Your commit message here" with a descriptive message that summarizes the changes you made.
-
Push the new branch to the remote repository:
git push origin <new-branch-name>
This command pushes the new branch to the remote repository, making it available for others to see and review.
- On GitHub navigate to the repository and locate the "New Pull Request" button.