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 存储库时会提到这些步骤中的大部分。