Closed milochen0418 closed 5 years ago
$ git branch -a 可查到 remotes/origin/gh-pages
$ git push -d origin gh-pages To https://github.com/milochen0418/ethereumbook_zh/
$ git branch -a 看見 remotes/origin/gh-pages 不見了
刪除 gh-pages 後,再將 upstream 同步下來, 再push 至origin $ git remote add upstream https://github.com/cypherpunks-core/ethereumbook_zh $ git fetch upstream $ git checkout --track upstream/gh-pages $ git push -u origin gh-pages 此時 origin 上的 gh-pages 與 upstream 上的 gh-pages 保持同步 這樣子就成功了 (可以直接在 GitHub 頁上面,查詢到)
試著修改 local 端的資料,再 push 至 origin $ vim … $ git add . $ git commit -m “...” $ git push -u origin gh-pages 這樣子就成功了 (修改後的樣子,可以直接在 GitHub 頁上面,查詢到)
按下 Pull Request 按鈕 最後,就在 自己 github repo 中 gh-pages 上面,按下 Pull Request 按鈕 這樣子就可以直接貢獻 ...
$ git branch -a 可查到 remotes/origin/gh-pages
$ git push -d origin gh-pages To https://github.com/milochen0418/ethereumbook_zh/
$ git branch -a 看見 remotes/origin/gh-pages 不見了
刪除 gh-pages 後,再將 upstream 同步下來, 再push 至origin $ git remote add upstream https://github.com/cypherpunks-core/ethereumbook_zh $ git fetch upstream $ git checkout --track upstream/gh-pages $ git push -u origin gh-pages 此時 origin 上的 gh-pages 與 upstream 上的 gh-pages 保持同步 這樣子就成功了 (可以直接在 GitHub 頁上面,查詢到)
試著修改 local 端的資料,再 push 至 origin $ vim … $ git add . $ git commit -m “...” $ git push -u origin gh-pages 這樣子就成功了 (修改後的樣子,可以直接在 GitHub 頁上面,查詢到)
按下 Pull Request 按鈕 最後,就在 自己 github repo 中 gh-pages 上面,按下 Pull Request 按鈕 這樣子就可以直接貢獻 ...