21.1.11


#1.コース:Git理論
#2.コース内容:整理生活コードGitコース
<バックアップ>
  • 用語まとめ
  • ローカルリポジトリ(地域リポジトリ)
  • (プッシュ)リモート・ストレージへのバックアップ:バックアップ
    リモートからダウンロード
  • リモートリポジトリ(リモートストレージ)
  • (クローン):別のコンピュータにコピー
    pull、push、cloneでは、3台のコンピュータが互いにバックアップし、動作することができます.

  • gitホスト選択:ハブ

  • リポジトリの作成:リポジトリの作成

  • リモートストレージへの接続(HTTP)
    分岐授業で作成したマニュアル2 word.txtで練習を始める
  • …or push an existing repository from the command line
    git remote add origin https://github.com/damin0320/my-repo.git
    git branch -M main
    git push -u origin main
    
    活用する
    (base) daminan@andamin-ui-MacBookAir manual2 % git remote add origin https://github.com/damin0320/my-repo.git 
    (base) daminan@andamin-ui-MacBookAir manual2 % git remote
    orgin
    (base) daminan@andamin-ui-MacBookAir manual2 % git remote -v
    orgiin	https://github.com/damin0320/my-repo.git (fetch)
    origin	https://github.com/damin0320/my-repo.git (push)
    Originは、後のアドレス別名の総称です.
    私がやっている仕事です.これは、txtというファイルをプッシュする前にリモート・リポジトリと行う操作です.(git remote)
    (誤字を打ったので、orginと申します…)
  • push
  • git push --set-upstream orgin master
    orginは私が設定した名前です.それではPushは終了です(羽状ハブに格納されます.)
    後で変更し、add、commit後にgit pushを再度行うと同期します.
  • clone
  • まず、ローカル・リポジトリのコンテンツをコピーします.
    git clone https://github.com/damin0320/my-repo.git
    この場合、my-poはコピーされます.
  • pull
  • git pull
    作ったら同じものをダウンロードできます.(2台のパソコンではなく、これは実習ではありません)
    まず明日の襟について復習して、実際に作った書類を削除する練習をします.