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

【GitHub】Quick setup のスクリプトは表示されなくなりました? - Xcode と GitHub の連携設定

Last updated at Posted at 2024-08-13

新規にリポジトリ作成したときに、

こういうの表示されてませんでした?

1655335809985.png

// ... or create a new repository on the command line

echo "# sample" >> README.md
git init
git add README.md
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/your-account/sample.git
pit push -u origin main
// ... or push an existing repository from the command line

git remote add origin https://github.com/your-account/sample.git
git branch -M main
git push -u orign main

どうしたらいいのか困りましたので探しておきました。

Xcode から上記コマンド同様の処理もGUIのみでできる雰囲気です。

詳細は以下から。

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