About project - xbaysal11/com-front GitHub Wiki
Project COM-FRONT
Description
Website of Computer Science department of Ala-Too International University. The website contains information about CS department, Bachelor and Master degrees, academic calendar and department news, also it has links to AIU main website. Students can get all up-to-date information in one place fast and easy!
Technologies being used:
Team
- Project Manager - Nasip Salmakhunov
- Team Lead - Baisalbek Daniiarov
- Front-End developer - Timur Zhusuev
- Front-End developer - Abdrakhman Niyazahunov
- Front-End developer - Islam Murtazaev
- QA engineer - Abdraim Kenenbaev
- QA engineer - Ildar Saifulin
- UX/UI designer - Aidarbek Zamirbekov
Useful Links:
Developer guide
- Work only on task that was created in project dashboard, by or on behalf of Project manager.
- To avoid conflicts while implementing a big feature, follow these steps: Create a new branch
git stash
git pull --rebase # to get all recent commits
git checkout -b "${Name_of_your_feature}"
git stash pop
git commit -m "${Name_of_your_feature} ${commit_message}"
After you have done working on your feature, push your branch to origin
git push origin "${Name_of_your_feature}"
and create a Pull request assigning a teammate and sending him a message so that he could review your changes and merge them to production branch. Read more on this approach at gitflow article...