Skip to content

Latest commit

 

History

History
37 lines (19 loc) · 919 Bytes

CONTRIBUTING.md

File metadata and controls

37 lines (19 loc) · 919 Bytes

Welcome to ObjectC and add any new feature you wanted. The process for contributing are in the following:

  1. git clone https://github.com/LingjieFan/ObjectC.git 2. git checkout -b your_new_features

  2. Do some modifications and fix the bugs.

  3. git diff

  4. git add .

  5. git commit -m "some comments"

  6. git push https://github.com/LingjieFan/ObjectC.git your_new_features

    If the main branch has been changed, we recommend the following process labeled as 7.1, 7.2, 7.3 ...

    7.1 git checkout main

    7.2 git pull https://github.com/LingjieFan/ObjectC.git main

    7.3 git checkout your_new_feature

    7.4 git rebase main

    7.5 git push -f https://github.com/LingjieFan/ObjectC.git your_new_feature

  7. pull request

  8. squash and merge

  9. delete the branch your_new_features

  10. git checkout main

  11. git branch -D your_new_features

  12. git pull https://github.com/LingjieFan/ObjectC.git main