Visual Studioコードでのgitの使用
960 ワード
git clone
1.Command PaletteでGit cloneを検索する
> git clone
2.git勘定科目への関連付け
3.クローンするRepositoryを選択
4.Localに保存する場所を選択
5.クローン作成完了
git commit & push
1.端末を開く
2. git add
git add .
「.」は、変更されたすべてのファイルに対するポインタです.特定のファイルのみを追加する場合は、特定のファイルの名前を指定できます.
3. git commit
git commit -m "commit message"
4. git push
git push [Remote Repository] [Branch]
5.プッシュ完了
Reference
この問題について(Visual Studioコードでのgitの使用), 我々は、より多くの情報をここで見つけました https://velog.io/@jhm971102/Visual-Studio-Code에서-git-사용하기テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol