Git将存储库导入为分支

时间:2017-09-14 04:30:05

标签: git bitbucket

我有repo2repo3repo4repo1。我希望保留repo2并将repo3repo4repo1作为repo2的不同分支,而不会丢失repo3中存在的标记或提交1}},repo4repo1-Master branch (contains tags and commits of repo1) |__branch2 (contains tags and commits of repo2) |__branch3 (contains tags and commits of repo3) |__branch4 (contains tags and commits of repo4)

componentDidMount = () => {

      let URL = 'https://jsonplaceholder.typicode.com/users'

         fetch(URL)
         .then(function(response) {
            let myData = response.json()
            return myData;
         })
         .then((json) => {
            console.log('parsed json', json)
         })
         .catch(function(ex) {
            console.log('parsing failed', ex)
         })

} // end componentDidMount

他们每个人都保留他们的历史提交,日期和标签吗?我可以选择一个特定的分支来推动代码,以及任何问题吗?

1 个答案:

答案 0 :(得分:2)

如果你的其他回购有每个分支(通常是主分支),它会起作用 您可以在repo1中获取它们,并将该主分支添加为新的孤立分支,它将具有自己的独立历史记录。

{{1}}