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.
すべてのコードを Bitbucket Git リポジトリにインポートする方法はありますか?
そこにあるすべてのファイルを最初にローカル マシンからプッシュし、そこから開始したいと思います。
Github などからのインポートを記載しているドキュメントを見つけましたが、以前にバージョン管理を使用したことのない既存のプロジェクトについては何も記載していません。
はい。
cd project-root
git init
git add .
git commit -m "Initial commit"
git remote add origin url-of-your-bitbucket-remote
git push -u origin master
これらの手順のほとんどは、BitBucket リポジトリを作成するときに記載されていることに注意してください。