-
Fork the repository:
- Navigate to the repository.
- Click the Fork button to create a fork of the repository.
- A fork of the repository will be created in your profile, copy that URL.
-
Clone the Fork:
-
Open Visual Studio Code.
-
Press
Ctrl+Shift+P(orCmd+Shift+Pon macOS) to open the Command Palette. -
Type
Git: Cloneand select it. -
Paste the repository URL: Paste the copied URL from Step 1.
-
Choose a directory to save the project.
-
-
Navigate to the Project Directory:
-
Open the cloned project in VS Code.
-
Use the integrated terminal (Ctrl+
or Cmd+on macOS) if needed.
-
-
Create a Branch for Your Changes:
-
Click the branch name in the bottom-left corner of VS Code.
-
Select
+Create new branch.... -
Enter a branch name (e.g., new-branch-name).
-
Press Enter.
-
-
Work on Your Changes and Push to the Branch:
-
Make your changes in the respective files.
-
Go to the Source Control tab (
Ctrl+Shift+Gon Windows orCmd+Shift+Gon macOS). -
Stage your changes by clicking the
+icon next to each file or the "Stage All Changes" button. -
Enter a commit message in the input box and click the checkmark to commit.
-
Click the
...menu in the Source Control tab and select Push.
-
-
Make a Pull Request:
-
Go to your forked repository page on GitHub.
-
Click the
New Pull Requestbutton. -
Select your branch and provide a clear description of your changes.
-
Submit the PR for review.
-
-
Follow the Review Process
- Your PR will be reviewed by the CODEOWNERS of the project. You may be asked to make changes or improvements before your contribution is merged. Please be patient and responsive to any feedback.
-
Fork the Repository:
-
Navigate to the repository.
-
Click the Fork button to create a fork of the repository.
-
A fork of the repository will be created in your profile, copy that URL.
-
-
Create a Project Directory and Clone the Fork:
- Open a New Terminal in Visual Studio Code.
- Create your project's root directory using
mkdir folder-nameand navigate to it usingcd folder-name. - Run the following command:
git clone copied-url
-
Navigate to the Project Directory:
- Run the following command:
cd developer-experience -
Create a Branch for Your Changes:
- Run the following command:
git checkout -b new-branch-name
-
Work on Your Changes and Push to the Branch
- Make your changes in the respective files.
- Stage your changes:
git add .- Commit your changes:
git commit -m "short description for the commit"- Push your changes:
git push
-
Make a Pull Request:
- Go to your forked repository page on GitHub.
- Click the
New Pull Requestbutton. - Select your branch and provide a clear description of your changes.
- Submit the PR for review.
-
Follow the Review Process
- Your PR will be reviewed by the CODEOWNERS of the project. You may be asked to make changes or improvements before your contribution is merged. Please be patient and responsive to any feedback.
This project and everyone participating in it is governed by the Code of Conduct. By participating, you are expected to uphold this code.