GIT Push not working on VS Code -


i have cloned git repo on visual studio code. made several changes in code , committed code when tried push push menu nothing work. it's keep on synching.

i didn't find settings configure credentials of git.

first of check whether had configured git on environment variables. if so, run below commands on vs code terminal

$>git --version git version 1.9.5.msysgit.1 

below command avoid prompt of git crentials everytime , set @ global level

$>git config --global credential.helper wincred 

this push code on git

$>git push origin master 

try again, push menu on vs code.

hope helps !


Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -