Skip to content

Commit a4cebff

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 7815aea + 778a49f commit a4cebff

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

algo-exercise/README.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)