如果我使用 bitbucket.org 是否意味着我不需要知道如何使用 git?
我对 git 和 bitbucket 感到困惑 - 如果我使用 bitbucket 是否意味着我不需要了解 git?
I'm confused about git and bitbucket - if I am using bitbucket does it mean I don't need to know git?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
BitBucket 是源代码托管平台。您必须了解 git 或 hg 以便能够将您的代码推送或发送到 BitBucket。
本质上,BitBucket 充当本地 git/hg 存储库的远程源。它比仅仅转储代码要强大得多。例如,其他人只需单击按钮即可分叉您的存储库。他们可以查看整个提交历史记录和所有分支。
BitBucket is source code hosting platform. You must know git or hg to be able to push or send your code over to BitBucket.
In essence, BitBucket acts as a remote origin for your local git/hg repository. It's a lot more powerful than just dumping your code. For example, other people can fork your repository by just clicking a button. They can view the entire commit history and all your branches.
BitBucket 可以被认为是托管您的存储库的服务器 - 无论是 hg 还是 git。您至少需要了解 Git 的一些基础知识,例如克隆、推送等才能使用它。您可以使用命令行或像 TortoiseGit 这样的 GUI,并将其托管在 BitBucket 上,这是一个并行的问题,但您必须了解 git。
BitBucket can be thought to be the server hosting your repo - be it hg or git. You need to know atleast some basics of Git, like clone, push etc. to work with it. You can work with command line or GUI like TortoiseGit, and host it on BitBucket, that is a parallel question, but you must know about git.