Docs: when pushing to github, the repo path needs to end in .git
Reported by Thell Fowler.
This commit is contained in:
parent
76a7356f56
commit
b64a7aa26c
@ -241,7 +241,7 @@ the upstream. You could do this:
|
|||||||
0a8f4f0^.. --onto=1130ef3 --rejoin \
|
0a8f4f0^.. --onto=1130ef3 --rejoin \
|
||||||
--branch gitweb-latest
|
--branch gitweb-latest
|
||||||
$ gitk gitweb-latest
|
$ gitk gitweb-latest
|
||||||
$ git push git@github.com:whatever/gitweb gitweb-latest:master
|
$ git push git@github.com:whatever/gitweb.git gitweb-latest:master
|
||||||
|
|
||||||
(We use '0a8f4f0^..' because that means "all the changes from
|
(We use '0a8f4f0^..' because that means "all the changes from
|
||||||
0a8f4f0 to the current version, including 0a8f4f0 itself.")
|
0a8f4f0 to the current version, including 0a8f4f0 itself.")
|
||||||
@ -258,7 +258,7 @@ And you can merge changes back in from the upstream project just
|
|||||||
as easily:
|
as easily:
|
||||||
|
|
||||||
$ git subtree pull --prefix=gitweb \
|
$ git subtree pull --prefix=gitweb \
|
||||||
git@github.com:whatever/gitweb gitweb-latest:master
|
git@github.com:whatever/gitweb.git gitweb-latest:master
|
||||||
|
|
||||||
Or, using '--squash', you can actually rewind to an earlier
|
Or, using '--squash', you can actually rewind to an earlier
|
||||||
version of gitweb:
|
version of gitweb:
|
||||||
|
Loading…
Reference in New Issue
Block a user