Catatan GIT



#----------------------------------------------------------#
# config
#----------------------------------------------------------#
git config --global user.name "nama"
git config --global user.email "email"
git config --global --list

#----------------------------------------------------------#
# kalau baru buat repo
#----------------------------------------------------------#
git init
# nambahin file atau folder ke local git biar ketrack
git add namafile atau kalau semua .

# kalau mau hapus cached git
git rm --cached namafile

# commit pake deskripsi
git commit -m "Initial commit"
git status

.gitignore > buat list folder atau file yang di ignore

git branch namabranch // buat branch baru
git checkout namabranch // pindah branch
git merge namabranch // gabungin branch

git status

git remote add origin url.git
git remote remove origin

git commit -m "Initial commit"

git push -u origin master
git push 

git clone url.git
# setelah ada perubahan commit
git commit -m "pertama"

git push -u origin master

Latest


EmoticonEmoticon