0
0

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.

ターミナルからマスターにマージする方法

Posted at

ターミナル操作によって、ファイルの追加、マージまでを一通りするコマンドについて書いていきます。

まず初めに、ファイルへ移動コマンドcd(チェンジディレクトリ)を押してcd~と移動したいところへ移動します。

目的のファイルへ移動後、VSCで都度変更を行う中で、commit、pushが必要になります。

まず、git add .とターミナルに入力します。これで変更した内容を上げます。

次に、git add commit -m"コミットしたい内容の名前"と入力します。これでリモートリポジトリに変更内容が上がります。

ここまでで、まだリポジトリを作成していない場合は、git remote add origin Newリポジトリのurlと入力します。これでリポジトリを登録します。

最後に、ターミナルでgit push origin masterを入力します。これで、マスターに上がります。:relaxed::sunny:

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?