I share this blog with my thoughts and creations from my daily programming, knowledge, and technology updates.
Apps Scriptリファレンス: Apps Script Reference
|障害・課題追跡: IssueTracker
|Google Workspace: Status Dashboard
- Summary
2019年8月30日金曜日
GitHubでフォークしたリポジトリをSourcetreeでクローンしたい
Googleの blockly のGitHubリポジトリをフォークしてSourcetreeでクローンしたときの備忘録
google/blockly
https://github.com/google/blockly
GitHubのblocklyのリポジトリで「Fork」をクリックして自分のアカウントにフォーク
「新規」から「URLからクローン」を選択
「ソースURL」を入れてクローン
これでローカルにクローンできました。
フォーク元のリポジトリをリモートに追加してみる
リモートでコンテキストメニューを開いてリモートを追加
リモートの名前:upstream
URL / パス:フォーク元のリポジトリのURL
「OK」をクリック
これでリモートにフォーク元のリポジトリが追加されました。
参考
https://qiita.com/takanemu/items/a576038f091c850693bc
https://backlog.com/ja/git-tutorial/intro/14/
https://www.atlassian.com/git/tutorials/comparing-workflows/forking-workflow
Latest post
Googleドキュメントに見出しを追加したい
今回の例では、ドキュメントの末尾に「見出しD」 を追加します。 見出しA, B, C, Dのスタイルは、見出し3 ( HEADING3 ) に設定しています。 下記Code.gsの GOOGLE_DOCUMENT_URL を設定して addHeadingToEnd() を...