i'm working on an application with a specific credential ( login , password , serverIP ) ...
for example : File /test.java :
String RegDomain = "188.XXX.XXX.XXX";
String RegPassword = "XXXXXXX";
String RegUser = "XXXXX";
my need is when i commit , and/or push my code i'd like to found that the test.java as following:
String RegDomain = "YOurDomaine";
String RegPassword = "YourPassword";
String RegUser = "UserName";
without changing the value on local repository .