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

问题描述 投票:0回答:4

enter image description here

我现在准备通过 git init 命令使用 git。

这就是之后的问题。

我不确定 git add 命令。

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

我必须上传修改后的文件吗?

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

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

你不给我那个链接吗?

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

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

git bitbucket
4个回答
3
投票

来自BitBucket官方文档

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

其中

ORIGIN_URL
是您的存储库 URL(例如
https://[email protected]:7999 /yourproject/repo.git


0
投票

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


0
投票

如果GIT未初始化

git init

在问题中git已经初始化了

尝试通过

了解状态
git status

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

git add .

承诺

git commit -m "comment"

添加存储库路径

git remote add origin URL

URL - 项目存储库 url

并用

推动
git push

-3
投票

我正在尝试通过 git bash 在 bitbucket 上发布我的 HTML, 并且总是面临错误

© www.soinside.com 2019 - 2024. All rights reserved.