Press "Enter" to skip to content

Posts published in “Git”

Belajar Menggunakan Git

How to change a remote’s URL GIT

0

How to change a remote’s URL GIT   The git remote set-url command changes an existing remote repository URL. Tip: For information on the difference between HTTPS and SSH URLs, see “Which remote…

Yii2 – Validation Case Sensitive on PostgreSQL

0

Yii2 – Validation Case Sensitive on PostgreSQL First Insert code below in your Model   public function getUsernameToLower() { return strtolower($this->username); }   and insert code below in rules function…