kaylinkhanal / sahayatri

0 stars 3 forks source link

When you are assigned a task, do this #4

Open kaylinkhanal opened 1 year ago

kaylinkhanal commented 1 year ago

git checkout develop git pull origin develop (so that all the latest changes in our develop branch comes to your local side)

Task: create a login page git checkout -b feature/loginpage .................make changes to your code............. git add . git commit -m "commit message" git push -u origin feature/loginpage

Naming conventions for branch: if the feature is related to authentication

if you are building the feature for the first time: -> feature/authentication

if there is a bug -> fix/authentication