My query may not be obvious from the question title so I'd give an example,
Let say my html file index.html
on Machine-1 is as follows:
MACHINE-1
<div class="col-xs-5 col-md-5 col-lg-3>
Lorem ipsum eget turpis urna curabitur fermentum ultricies enim, est magna at quam nam nisl praesent accumsan egestas, ut sit ac pulvinar tristique quisque tristique.</div>
I commit this and push to remote.
On my other machine I pull from remote but here I'd want the Sample data to be different say:
MACHINE-2
<div class="col-xs-5 col-md-5 col-lg-3>
Pharetra diam aenean vehicula sociosqu etiam at cubilia, mattis inceptos suscipit curabitur placerat ultrices, lorem consectetur lorem class curabitur donec.</div>
I commit this and push to remote.
When I pull from remote on Machine-1, the sample data "Lorem ipsum eget turpis ..." (in local repo) on Machine-1 should not be overwritten by sample data from Machine-2 "Pharetra diam aenean vehicula..."
Is there any command, workaround, setup to manage this scenario.
thanks