add new guidelines

This commit is contained in:
bhaumikmistry
2019-11-27 10:26:36 -05:00
parent f8e1cb388c
commit 7a8b5c9346

View File

@@ -31,14 +31,14 @@ We are very happy that you consider implementing algorithms and data structure f
- Use lowercase words with ``"_"`` as separator
- For instance
```
MyNewCppClass.cpp is incorrect
MyNewCppClass.CPP is incorrect
my_new_cpp_class.cpp is correct format
```
- It will be used to dynamically create a directory of files and implementation.
- File name validation will run on docker to ensure the validity.
#### Commit Guidelines
- It is recommended to keep your changes grouped logically within individual commits. Contributors find it easier to review changes that are silt across multiple commits.
- It is recommended to keep your changes grouped logically within individual commits. Contributors find it easier to review changes that are split across multiple commits.
```
git add file_xyz.cpp
git commit -m "your message"