How can I start a clean branch with no ancestry, then commit files progressively?

后端 未结 3 1766
清歌不尽
清歌不尽 2020-12-12 19:22

I have a PHP framework versioned with GIT and I\'m planning several (drastic) changes to its core.

What I want to do is to start working on the new core in a new br

相关标签:
3条回答
  • 2020-12-12 19:31

    If you must work with an old version of git:

     mkdir some_dir
     cd some_dir
     git init
     echo a>some_file; git add some_file; git commit -m 'initial commit'
     cd ..
     git fetch ./some_dir/ master:new_independent_branch
     rm -rf some_dir
    
    0 讨论(0)
  • 2020-12-12 19:31

    What you can do is simply moving to a new branch, git co -b my_new_branch, clean up your code and keep the things you need, and finally commit. That commit, the first on my_new_branch, would then be a clean one.

    0 讨论(0)
  • 2020-12-12 19:41

    Branch with No Ancestors

    You want the --orphan flag. For example:

    git checkout master
    git checkout --orphan foo
    
    # Unstage all the files in your working tree.
    git rm --cached $(git ls-files)
    

    will create a new branch named foo with no ancestors, but it will preserve the current working tree from whatever branch you were on when you called the command (in this case, the master branch). You can then modify your working tree to suit, and then make a commit to start that branch's history afresh.

    Incremental Staging of Files

    To perform incremental additions to your history, use git add to stage just the files you want for each commit. The git-add(1) manual page has this to say about adding files selectively:

    Fileglobs (e.g. *.c) can be given to add all matching files. Also a leading directory name (e.g. dir to add dir/file1 and dir/file2) can be given to add all files in the directory, recursively.

    0 讨论(0)
提交回复
热议问题