You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The best way to propose a change is to start a [discussion](https://github.com/CodeChefVIT/papers-codechef/discussions) on our CodeChefVIT GitHub repository. Begin by creating a new discussion, write a brief problem statement that clearly explains the issue you want to address, without tying it to any specific solution. It doesn’t need to be long or formal; just provide enough context to clearly understand the problem before discussing possible solutions.
12
+
The best way to propose a change is to start a [discussion](https://github.com/CodeChefVIT/papers-codechef/discussions) on our CodeChefVIT GitHub repository. Begin by creating a new discussion, write a brief problem statement that clearly explains the issue you want to address, without tying it to any specific solution. It doesn’t need to be long or formal; just provide enough context to clearly understand the problem before discussing possible solutions.
13
13
14
14
## Setting up
15
15
-**Fork** the repository. All the PRs would be made from this fork.
@@ -29,18 +29,7 @@ Once your environment is set up, you're ready to start coding.
29
29
-**Create a new branch:** Use the command `git checkout -b yourName/featureName` to create a new branch for your work.
30
30
-**Make your changes:** Write the code to address the issue you were assigned.
31
31
-**Add changed files:** After making your changes, use `git add .` to add the modified files to Git tracking.
32
-
-**Commit your changes:** Use `git commit -m "feat: xyz"` to create a checkpoint for your work. Use a prefix that describes your changes. Common prefixes include:
33
-
-`feat:` A new feature.
34
-
-`fix:` A bug fix.
35
-
-`docs:` Documentation changes.
36
-
-`style:` Formatting or white-space changes that do not affect the code's meaning.
37
-
-`refactor:` A code change that is not a bug fix or a new feature.
38
-
-`perf:` A code change that improves performance.
39
-
-`test:` Adding or correcting tests.
40
-
-`build:` Changes affecting the build system or external dependencies.
41
-
-`ci:` Changes to CI configuration files or scripts.
42
-
-`chore:` Other changes that don't modify source or test files.
43
-
-`revert:` Reverts a previous commit.
32
+
-**Commit your changes:** Please follow standard conventional commit guidelines as outlined here: https://www.conventionalcommits.org/en/v1.0.0/
44
33
-**Push your changes:** Push your commits to your forked repository using `git push`.
0 commit comments