Closed Sushmita143 closed 4 years ago
@Sushmita143 - Well done ! A quick note: I see you have made a commit for each file above. That's a lot of hard work, use the following next time.
# after making all your required changes git status # shows all the files you've made changes to git add -A # adds all those files which are shown in red (turns to green after being added) git commit -m "made all changes required" git push origin <branch-name>
Also, you forgot to create a branch. You will see above that the pull request says
Sushmita143: master
,git branch # check which branch you are on git checkout -b newBranch # Make all changes and follow above procedure
Okay, next time!
@Sushmita143 - Well done ! A quick note: I see you have made a commit for each file above. That's a lot of hard work, use the following next time.
Also, you forgot to create a branch. You will see above that the pull request says
Sushmita143: master
,