0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Xcodeで作成したコードをGitHubにpush

Posted at

Xcodeで作成したコードをGitHubにpushしたので
手順をメモしておきます

1. GitHubリポジトリの作成

GitHubにログインして、リポジトリを作成

2. GitHubにリポジトリをプッシュ

(a) ターミナルを使用

1.プロジェクトフォルダに移動

cd path/to/your/project

2.GitHubリポジトリをリモートリポジトリとして設定

git remote add origin https://github.com/username/repository.git

3.変更をステージング&コミット

git add .
git commit -m "Initial commit"

4.コードをGitHubにプッシュ

git push -u origin main

ここでGitHubのIDとPersonal Access Token(以下PAT)を求められます

Settings > Developer settings > Personal access tokensで新トークンを生成します。
スクリーンショット 2024-12-16 18.58.41.png

「Contents」にRead/Write権限を付与します
スクリーンショット 2024-12-16 18.58.50.png

上手くいくとこんな感じです
スクリーンショット 2024-12-16 19.00.33.png

以上です。

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?