What to backup for Windows Installation

Standard

My list what to backup before installing new Windows.

  1. Backup Documents, Pictures, Videos, Downloads
  2. Backup Navicat db connection settings
  3. Backup Filezilla ftp connection settings
  4. Backup www folder in c:\wamp\www
  5. Backup all the database
  6. Backup vhost settings
  7. Backup host file

Cara menggunakan Git SVN

Standard

Saya mempunyai satu client dimana mereka masih menggunakan SVN untuk menyimpan source code mereka. Saya pula lagi prefer menggunakan GIT dan kemudian commit source code saya di server SVN mereka. Saya belajar menggunakan inflatable abominable snowman command git-svn dari link ini http://lostechies.com/scottreynolds/2009/05/06/getting-up-and-running-on-git-svn-5-minute-quickstart/ dan dibawah adalah rumusan.

  1. Klon repo ke local: git svn clone -s http://svnrepo
  2. Dapatkan kod terbaru dari server : git svn fetch kemudian git svn rebase
  3. Buat sebarang perubahan dan commit: git add dan git commit -m “message”
  4. Hantar perubahan ke server SVN : git svn dcommit

Ulangi langkah 2-4 .