简体   繁体   中英

How do I only commit specific lines using SmartGit/Hg

I'm using SmartGit/Hg. I edited some files working on two separate new features. Now as I finished working on Feature A , I want to commit my work, but I can't just commit all my edited files, as they contain changes of Feature B , which I do not want to commit just now.

You can achieve that using the stage command. First of all, stage all the files containing changes to be committed. In this example, all the files except the one called DoNotCommit.php contain at least one line we want to commit: 在此输入图像描述

Next, we need to open the Index Editor for all files containing lines of Feature A and Feature B . In this example, we need to check Main.php and NewFeatures.php : 在此输入图像描述

This opens the Index Editor . You see three tabs with your code: Repository (HEAD) , Index , Working Tree : 在此输入图像描述

For us, only the Repository (HEAD) and the Index tab are important. The Repository (HEAD) tab shows the already committed content of the file. The Index tab shows the changes we are going to commit. Let's say we only want to commit the first block of code, with the myNewCompletedFeature function: 在此输入图像描述

As you see, we remove all the code we do not want to commit from the Index tab. This does not remove the code from the Working Tree , meaning you do not loose any of your changes. Now we do the same with our new NewFeatures.php file and save again: 在此输入图像描述

In the last step, we are going to actually commit the new feature. Make sure to select Staged Changes in the commit window! 在此输入图像描述

Wow, we are done now!

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM