у меня проблемы с git pu sh ive t - PullRequest
       0

у меня проблемы с git pu sh ive t

0 голосов
/ 16 февраля 2020
stizz@Stizzys-Mac code % cd homework 
stizz@Stizzys-Mac homework % cd work-day-scheduler 
stizz@Stizzys-Mac work-day-scheduler % git status
On branch master
Changes not staged for commit:
  (use "git add/rm <file>..." to update what will be committed)
  (use "git checkout -- <file>..." to discard changes in working directory)

    deleted:    Work-Day-Schedule
    modified:   script.js

no changes added to commit (use "git add" and/or "git commit -a")
stizz@Stizzys-Mac work-day-scheduler % git add . 
stizz@Stizzys-Mac work-day-scheduler % git commit -m "script.js update"
[master eba02ca] script.js update
 2 files changed, 2 deletions(-)
 delete mode 160000 Work-Day-Schedule
stizz@Stizzys-Mac work-day-scheduler % git push
fatal: The current branch master has no upstream branch.
To push the current branch and set the remote as upstream, use

    git push --set-upstream origin master

stizz@Stizzys-Mac work-day-scheduler % 

1 Ответ

0 голосов
/ 16 февраля 2020
% git push
fatal: The current branch master has no upstream branch.
To push the current branch and set the remote as upstream, use

    git push --set-upstream origin master

Git сказал вам, что нужно сделать, чтобы решить проблему, но давайте go объясним, что это означает. и какая ветка на том пульте пу sh это до. Пульт ДУ обычно является исходным, и в этом случае вы хотите подключить sh к его основной ветке. Проще говоря, это git push origin master.

Но ветвь может иметь «ветку восходящего потока», означающую, что она уже знает, куда нужно пойти sh. Тогда вы можете git push и Git знать, куда нужно sh. git push --set-upstream origin master подталкивает вашу ветку к основной ветке по происхождению и запоминает это на будущее. С этого момента вы можете git push, и он будет go к основной ветви источника.

Вы также можете сделать это без нажатия: git branch -u origin master.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...