Git bash如何将项目上传到位桶?

时间:2017-05-16 15:04:19

标签: git bitbucket

enter image description here

我现在已准备好使用git和git init命令。

之后就是问题。

我不确定git add命令。

我应该添加什么来添加文件?

我是否必须上传修改过的文件?

不仅如此,我还不知道如何将项目上传到比特桶。

如果您有详细描述的链接,

你不会给我那个链接吗?

韩国没有太多数据可供参考。

如果您有任何信息,请分享。

3 个答案:

答案 0 :(得分:1)

来自BitBucket official doc

git init
git add --all
git commit -m "Initial Commit"
git remote add origin ORIGIN_URL 
git push -u origin master

ORIGIN_URL是您的存储库网址(例如https://username@your.bitbucket.domain:7999 /yourproject/repo.git

答案 1 :(得分:0)

如果GIT未初始化

git init

在git已经初始化的问题中

尝试使用

查找状态
git status

如果您发现任何必须添加的文件用于提交使用

git add .

提交

git commit -m "comment"

添加存储库路径

git remote add origin URL

网址 - 项目存储库网址

并按

git push

答案 2 :(得分:0)

Bitbucket有关于如何执行此操作的说明: https://confluence.atlassian.com/bitbucket/set-up-a-repository-877174034.html