我有repo2
,repo3
,repo4
和repo1
。我希望保留repo2
并将repo3
,repo4
和repo1
作为repo2
的不同分支,而不会丢失repo3
中存在的标记或提交1}},repo4
和repo1-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
他们每个人都保留他们的历史提交,日期和标签吗?我可以选择一个特定的分支来推动代码,以及任何问题吗?
答案 0 :(得分:2)
如果你的其他回购有每个分支(通常是主分支),它会起作用 您可以在repo1中获取它们,并将该主分支添加为新的孤立分支,它将具有自己的独立历史记录。
{{1}}