Will explain what am looking to achieve. Created a sample gulp file using git am able to fetch and push the changes into git.
For example if am having a file called as abc.js, If am doing any changes in that file then using the gulp git it replacing the abc.js file with the changed version of abc.js.
Instead of this is there any way just to push only the changed content instead of entire file.
Can anyone let me know how to achieve...
More deeply:
Default abc.js:
function sample(){
alert('hai');alert('bye');
}
Changed abc.js:
function sample(){
alert('bye');
}
How to just remove the alert('hai') only instead of pushing entire file.