This is very minimilistic mock ahms API. It is live and can be found at here.
GET all results
https://mock-ahms.herokuapp.com/v1/resources/ahms/all
GET result based on Student ID
https://mock-ahms.herokuapp.com/v1/resources/ahms?student_id=18001
?student_id=
💥 The API currently only provides data for 8 students, i.e 18001 to 18008
GET result based on stay back
https://mock-ahms.herokuapp.com/v1/resources/ahms?has_stayback=1
has_stayback
value after ?has_stayback=
💥 has_stayback
only takes boolean values, i.e either 1 or 0
-
Viewing the status of your repostory
git status
This command will show the current status of your repository
-
Adding (Staging) files to git
git add -A
⚠️ This command will add allmodified and untracted files
. -
Commiting a file
git commit -m "YOUR COMMIT MESSAGE"
⚠️ ReplaceYOUR COMMIT MESSAGE
with a suitable commit message. -
Uploading/pushing your files to a remote repository
git push origin master
⚠️ The above command will push/upload all your files to themaster
branch of your repository.
⭐ To know more on Git, please have a look here.