Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我创建一个新分支时,我看到的内容与“master”中的内容相同。
如何分离内容,以便分支中的任何内容仅在分支中,而主中的任何内容都保留在主中?
谢谢
当你分支时,你已经在分离内容。您看到的内容与 master 中的内容相同,因为您尚未提交任何更改。尝试更改文件然后提交。此新更改将保留在您的分支中,并且不会出现在您的主分支中。
阅读有关基本分支的信息。