1
2

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でローカルリポジトリを作成して、Salesforceソース管理する

Last updated at Posted at 2019-11-25

1.Gitインストールする
2.TortoiseGitインストールする

3.ロカールでフォルダを作成する(例として:Sampleフォルダ)
4.Sampleフォルダ下に、[git init]コマンドを実行して、ロカールリポジトリを作成する
  C:\Sample>git init

5.VSCodeでSalesforceソース取得して、Sampleフォルダ下に保存する
6.下記のコマンドでSalesforceソースをロカールリポジトリに追加する
  C:\Sample>git add .
  C:\Sample>git commit -m メッセージ
7.または、フォルダ選択して、右クリックして、TortoiseGitでコミットする
  TortoiseGit ⇒ 追加 ⇒ Gitコミット(C)
8.修正・追加があれば、上記の6OR7を実行する

1
2
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
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?