https://www.freetech4teachers.com/2018/08/250-google-tools-tutorials-for-teachers.html
Sunday, December 23, 2018
Thursday, September 20, 2018
Trace failed request on running website in IIS Express
Tracefailed request on running website in IIS Express
To temporarily by pass the issue, we can remove the provider WWW Server in application config as mentioned in this SO post
https://stackoverflow.com/questions/32874615/iis-7-5-tracing-area-is-not-recognized-http-error-500-0-internal-serv
C:\Users\UserName\Documents\IISExpress\config
Thursday, January 25, 2018
Basic git command to create a new branch revert changes in a branch
`git checkout staging`
`git pull`
`git checkout -b ES-205 #create a new branch`
`git push --set-upstream origin ES-205 #push the new branch`
`git checkout staging`
`git revert _____ # revert the commits you made on staging`
`git pull`
`git checkout -b ES-205 #create a new branch`
`git push --set-upstream origin ES-205 #push the new branch`
`git checkout staging`
`git revert _____ # revert the commits you made on staging`
Subscribe to:
Posts (Atom)