Git :: git push error
- Soojin Woo
- 2019년 6월 9일
- 1분 분량
I was able to solve the git push problem by applying Method1 or Method2.
Method 1)
$ git remote remove origin
$ git remote add origin 'your github link'
(ex) git remote add origin https://github.com/~~~)
Method 2)
$ git push --set-upstream origin +master
Comments