Uso github da un periodo relativamente breve e ho sempre usato il client per eseguire commit e pull. Ieri ho deciso di provarlo da Git Bash e ho creato con successo un nuovo repository e file di commit.
Oggi ho apportato modifiche al repository da un altro computer, ho eseguito il commit delle modifiche e ora sono tornato a casa ed ho eseguito un git pull
aggiornamento per la mia versione locale e ottengo questo:
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details
git pull <remote> <branch>
If you wish to set tracking information for this branch you can do so with:
git branch --set-upstream develop origin/<branch>
l'unico contributore a questo repository sono io e non ci sono filiali (solo un maestro). Sono su Windows e ho eseguito il pull da Git Bash:
stato git:
$ git status
# On branch master
nothing to commit, working directory clean
ramo git:
$ git branch
* master
Che cosa sto facendo di sbagliato?
git pull
.
git pull --set-upstream-to=origin/master master
è possibile. Vedi la mia risposta qui sotto
git remote -v
? Cosa dice?