I want to ignore some changes of ~/myConfig/.config/smtube/smtube2.ini
because SMTube keeps on saving the SMTube window position and size each time I close it :
$ cd ~/myConfig/.config/smtube/
$ git diff smtube2.ini
diff --git a/.config/smtube/smtube2.ini b/.config/smtube/smtube2.ini
index e40b4de..f2188a8 100644
--- a/.config/smtube/smtube2.ini
+++ b/.config/smtube/smtube2.ini
@@ -1,6 +1,6 @@
[window]
size=@Size(1227 679)
-pos=@Point(310 94)
+pos=@Point(133 94)
font="Droid Sans,11,-1,5,50,0,0,0,0,0"
style=gtk+
EDIT 1 : In fact, I want to ignore size=
and pos=
line changes of that tracked file.
How do I do that ?