clone specific commit bitbucket

女生的网名这么多〃 提交于 2019-12-19 10:08:24

问题


_

I have an project in bitbucket and I want to clone specific commit from it
these are the commits, I want without the last two of them

butin SourceTree I can't see the commits number b6981f9 and 1fb876a
just the last number da84f64

I think because the last 3 pushed together, what I should do?


回答1:


yes I want the whole repository except the last 2 commits, I don't need it, so how I can specific that cloning?

The normal way is to:

  • clone everything
  • checkout a new branch (or reset the current branch) to HEAD~2

    git checkout -b newBranch @~2
    

Other than that:

  • shallow clone allows you to get the last n commits (which is not what you want)
  • sparse checkout is about subfolders (not sub-commits)
  • fetch single commit would not get all commits but some.

I have partners in project but we got bug in the last 2 commits

So, with SourceTree:

  • clone the repo (normal clone)
  • select the commit from which you want to work: double-click the commit to check it out, then click 'Branch'.

Once you have created an new branch, work and add new commits, then push your bugfix branch.



来源:https://stackoverflow.com/questions/39813578/clone-specific-commit-bitbucket

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!