2013-05-12 35 views
3

有沒有辦法將所有代碼導入到Bitbucket Git倉庫中?導入所有的源代碼到Bitbucket Git最初

我想推出那裏的所有文件,最初從我的本地機器,然後從那裏開始。

我發現文檔指出從Github和其他人導入的文檔,但沒有關於以前沒有使用版本控制的現有項目。

回答

9

是的。

  • 在bitbucket中創建一個新的回購。
  • 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

注意,當您創建到位桶回購大部分的步驟被提及。

+0

關於此官方文檔:https://confluence.atlassian.com/display/BITBUCKET/Import+code+from+an+existing+project#Importcodefromanexistingproject-Importanexisting%2Cunversionedcodeprojecttoanemptyrepository – MECU 2013-07-06 01:44:09

+0

如果在將更改推送到bitbucket時遇到錯誤,你可以試試git push --mirror url-of-your-bitbucket-remote – 2014-01-30 13:04:09

+0

不幸的是,這些步驟會創建一個本地回購作爲副產品,因爲它會將文件添加到本地文件系統中,因此可能並不需要。 – 2016-03-13 09:06:05