Set Config
$ git config --global user.email "sena.turana@gmail.com"
$ git config --global user.name "Sena Turana"
Buat Repository di Bonobo Git Server
ex. IntegrasiNSW_RAPAT
http://10.102.120.138/Bonobo.Git.Server
Lihat Git URL
Git url : http://10.102.120.138/Bonobo.Git.Server/IntegrasiNSW_RAPAT.git
masuk ke Git CMD
E:\Share GDrive\PDE>cd IntegrasiNSW_RAPAT
$ git init
tambah remote origin
$ git remote add origin http://10.102.120.138/Bonobo.Git.Server/IntegrasiNSW_RAPAT.git
check remote
$ git remote -v
Tambah semua file ke dalam repository
$ git add .
Commit
$ git commit -m "Initialize Integrasi NSW Rapat"
Push
$ git push origin master
Untuk user yang akan pull
$ git config --global user.email "sena.turana@gmail.com"
$ git config --global user.name "Sena Turana"
$ git init
$ git clone http://10.102.120.138/Bonobo.Git.Server/IntegrasiNSW_RAPAT.git
$ git remote add origin http://10.102.120.138/Bonobo.Git.Server/IntegrasiNSW_RAPAT.git