No, if you cherry-pick a commit from one branch to another and then remove it from the original branch, the commit will not be removed from the other branch.
Cherry-picking a commit means that you are applying the changes introduced by that commit to a different branch. The original branch and the new branch are separate entities, and the commit exists independently in each branch.
Therefore, if you remove the commit from the original branch, it will only be removed from that branch, and the commit will still exist in the other branch where you cherry-picked it.
this project is developed by Awais Azam Features Graphically display the parking locations(symbolically) Keep record of the arrival and departure of the vehicles with date-time specified Resume the data from the storage Can check history (arrival + departure) Automatically choose the parking location Alarm if any vehicle violate the parking order Description This project is coded in C++ using codeblocks compiler, it has almost 500 lines of code. easy for the beginners in the C++ language , almost each line is commented and explaining its purpose. As per the working of this app , for the first run it create some text files to keep the record of the vehicles , First screen show the menu from which user has to select an option as per his/her need As the screen shows , above is the screen shot of the application, it is not a small project as it looks like it almost cover all the major topics of C++ (not OOP) you can also check my other project which is also
Comments
Post a Comment