Я всегда работал с git и opensr c очень простым ограниченным способом
- I fork проект в github
- I git клон моя вилка к моему компьютеру
- Я делаю некоторые изменения на своем компьютере
- I фиксирую изменения
- I pu sh на мою вилку github
- Я создаю запрос на извлечение от моей github вилки к оригиналу project
Это работает для одного изменения.
Если я внесу дополнительные изменения на своем компьютере и передам их, а также pu sh до принятия запроса на получение, они добавляются в тот же запрос на извлечение. Я знаю, что это не идеально, поэтому я пытаюсь дождаться принятия первого запроса, прежде чем вносить дальнейшие изменения, но это не всегда возможно.
Так что я понимаю, что в идеале вы должны создавать отдельные ветви для каждой ошибки фикс. Поэтому я сделал новую ветку, внес изменения, зафиксировал изменения и отправил их обратно в github. Но я не вижу этой новой ветки на github, и я не уверен, что мне делать дальше?
Когда я запускаю git pu sh в этой новой ветке я получаю
ubuntu@ip-172-31-39-147:~/code/discogs-xml2db/speedup$ git push
warning: push.default is unset; its implicit value is changing in
Git 2.0 from 'matching' to 'simple'. To squelch this message
and maintain the current behavior after the default changes, use:
git config --global push.default matching
To squelch this message and adopt the new behavior now, use:
git config --global push.default simple
When push.default is set to 'matching', git will push local branches
to the remote branches that already exist with the same name.
In Git 2.0, Git will default to the more conservative 'simple'
behavior, which only pushes the current branch to the corresponding
remote branch that 'git pull' uses to update the current branch.
See 'git help config' and search for 'push.default' for further information.
(the 'simple' mode was introduced in Git 1.7.11. Use the similar mode
'current' instead of 'simple' if you sometimes use older versions of Git)
Я не получил этого, когда нажал на другую ветку, значит ли это, что pu sh на самом деле не произошло?
Обновление , поэтому я попробовал совет Швернса, команда как не работала, но добавление setup upstream origin сработало, изменения были перенесены в github, и теперь я вижу эту новую ветку на github. ,
ubuntu@ip-172-31-39-147:~/code/discogs-xml2db/speedup$ git config --global push.default simple
ubuntu@ip-172-31-39-147:~/code/discogs-xml2db/speedup$ git push
fatal: The current branch releasestatus has no upstream branch.
To push the current branch and set the remote as upstream, use
git push --set-upstream origin releasestatus
ubuntu@ip-172-31-39-147:~/code/discogs-xml2db/speedup$ ^C
ubuntu@ip-172-31-39-147:~/code/discogs-xml2db/speedup$ git push --set-upstream origin releasestatus
Username for 'https://github.com': ijabz
Password for 'https://ijabz@github.com':
Counting objects: 17, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (6/6), done.
Writing objects: 100% (6/6), 600 bytes | 0 bytes/s, done.
Total 6 (delta 5), reused 0 (delta 0)
remote: Resolving deltas: 100% (5/5), completed with 5 local objects.
remote:
remote: Create a pull request for 'releasestatus' on GitHub by visiting:
remote: https://github.com/ijabz/discogs-xml2db/pull/new/releasestatus
remote:
To https://github.com/ijabz/discogs-xml2db.git
* [new branch] releasestatus -> releasestatus
Branch releasestatus set up to track remote branch releasestatus from origin.