there is no tracking information for the current branch
-> git pull origin master 입력
-> git branch --set-upstream-to=origin/master master : branch를 등록하여 추적하게하자...!
failed to push some refs to 'https://github.com~ .git'
-> remote에서 행해진 작업이 local에서 이루어지지 않았으므로 push하기전에 pull부터 해라.
-> remote repository에서 commit을 잃어버렸을 때 발생
-> git push -f origin (강제) or pull하고 push
참고