4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Git clone から pushまで

Posted at

#Gitの使い方
リモートリポジトリからclone→ローカルでブランチ作成→ファイル修正→リモートにpushまでの方法のまとめ

ディレクトリ作成
mkdir test

ディレクトリ移動
cd test

リポジトリからファイルをクローン
git clone URL(githubのリポジトリのURLを貼り付け)

ブランチ作成参考URL
https://backlog.com/ja/git-tutorial/reference/branch/#section2

現在のブランチを確認(ここからの操作はvscodeのターミナルでも可能)
git branch

ブランチの作成
git branch hoge(hoge部分は自分の作りたいブランチ名を設定)

ブランチの変更
git checkout hoge

ここまで進んだらでファイルの編集を行う

編集が終わったらステージング
git add README.md(README.MDの部分はステージングしたいファイル名を記述)
※変更したファイルを全て選択する場合は「git add .」

ステージングした内容をコミット
git commit -m "add new file"

コミットした内容をpush
git push origin master(masterの部分はpushしたいブランチに変更する。今回であれば git push origin hoge)

以上でクローンからリモートへのプッシュまでが完了

この後について
####プルリクエスト→マージの流れはターミナルではなく、github上でやればOK

4
5
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?