Home > Blockchain >  How to sync/link my master and remote repository in android studio/Git
How to sync/link my master and remote repository in android studio/Git

Time:05-05

I have used a push command however the link is still yellow (where the arrow is pointing) and not green. What am I doing wrong?

android studio

CodePudding user response:

Since you are pushing directly to master, you may need to git push origin master

  • Related