0

npm install jquery is not working

Please Find Screenshot Below :

npm install jquery is not working

After it, git push origin master is not working

git push origin master is not working

LuFFy
  • 8,799
  • 10
  • 41
  • 59
Skumar
  • 35
  • 1
  • 2
  • 7

1 Answers1

0

Github seems only supports ssh way to read&write the repo, although https way also displayed 'Read&Write'.

So you need to change your repo config on your PC to ssh way:

  1. edit .git/config file under your repo directory
  2. find url=entry under section [remote "origin"]
  3. change it from url=https://MichaelDrogalis@github.com/derekerdmann/lunch_call.git to url=ssh://git@github.com/derekerdmann/lunch_call.git. that is, change all the texts before @ symbol to ssh://git
  4. Save config file and quit. now you could use git push origin master to sync your repo on GitHub
LuFFy
  • 8,799
  • 10
  • 41
  • 59
  • @Skumar, It should be working, It looks like your user rights are broken. Try to login using Root user and try same step. Also now you can show your machine to some Linux Administrator, He/She may help you further. – LuFFy Jun 01 '17 at 09:17