Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PCにgitをインストールし、リポジトリを作成しました。xcodeプロジェクト全体をgitにコピーするにはどうすればよいですか?ファイルを手動でbranchsフォルダーにコピーできますか?
ファイルをそのディレクトリにコピーしてから、次の手順を実行します。
git add . git commit -m "Initial commit"
または...すでに持っているプロジェクト内に、を使用してリポジトリを作成しますgit init。
git init