Useful tips...Part1
How to save credentials in Git?
1: Give below command
$ git config credential.helper store
2:Now use command git pull3: You will see that Git will ask you for entering user name & password. Provide username & password. Same user name & password will be saved inside git.
4: Again try git pull & you will notice that it will not prompt you for user name & password. It will use the credentials which we have saved in step 3.
5: Git stores credentials in text file named .git-credentials inside C:\Users\your-window-user
How to rebuild client Libraries in AEM?
In some scenarios when we have problem while building the client libraries,we may need to rebuild our client libraries manually.
One such scenario is that your client library is using .less files & less files are not compiling correctly then you will see some error in console.
To rebuild our client libraries we can use the dumplibs tool in AEM.
http://localhost:4502/libs/granite/ui/content/dumplibs.rebuild.html
Useful Link for generating Cron expressions while working on schedulers in AEM.
Below link may be useful for you to a cron expression.
http://www.cronmaker.com
Free Fake SMTP Server for testing emails functionality in local system.
There is a free application named as FakeSMTP which can be used for testing emails in applications easily. It is written in Java.
Configure your application to use "localhost" as your SMTP server, and all emails will be intercepted and displayed in this software.
Very nice blog... Thanks for great information.
ReplyDeleteThanks :)
Delete