File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -102,3 +102,28 @@ Please see, if you're unsure how to run maven in your setup:
102102* (https://maven.apache.org/guides/getting-started/maven-in-five-minutes.html )
103103* (https://www.jetbrains.com/help/idea/maven-support.html )
104104* (https://code.visualstudio.com/docs/java/java-build#_execute-maven-commands-and-goals )
105+
106+ ### How to Submit your code
107+
108+ On your fork, once you are ready to finally submit the code, tag your work with the tag final_submission.
109+
110+ ```
111+ git tag -a final_submission -m "Final submission for Algo Assessment"
112+ ```
113+ confirm that the tag has been created
114+
115+ ```
116+ git tag
117+ ```
118+ and it should show the tag final_submission in the list. You can also see the details of the commit using
119+
120+ ```
121+ git show final_submission
122+ ```
123+ finally push the tag
124+ ```
125+ git push origin final_submission
126+ ```
127+ Then share the link to your tag in the fork before the submission deadline with CBF team.
128+
129+ for eg: https://github.com/cbfacademy/trading-algorithm-assessment/releases/tag/v1.0
You can’t perform that action at this time.
0 commit comments