Visual Studioコードでのgitの使用



git clone


1.Command PaletteでGit cloneを検索する

  • Command Paletteショートカット:F 1
  • > git clone

    2.git勘定科目への関連付け

  • Webブラウザ
  • を使用

    3.クローンするRepositoryを選択

  • Command Paletteから
  • を選択

    4.Localに保存する場所を選択


    5.クローン作成完了



    git commit & push


    1.端末を開く

  • 端末ショートカットキー:CTRL+SHIFT+`
  • 2. git add

    git add .
    「.」は、変更されたすべてのファイルに対するポインタです.
    特定のファイルのみを追加する場合は、特定のファイルの名前を指定できます.

    3. git commit

    git commit -m "commit message"

    4. git push

    git push [Remote Repository] [Branch]

    5.プッシュ完了