Apa itu Git? Nota ringkas Git
Ringkasan Git
* Nanti akan dijelaskan :)
* Doakan Lee rajin untuk buat video tutorial :)
Nota command Git
Check if Git has already been installed
git --version
Add your Git username & set your email
git config --global user_name "YOUR USERNAME"
git config --global user_name
git config --global user_email "YOUR EMAIL"
git config --global user_email
Check your information
git config --global --list
Initialize a local directory for Git version control
git init
Clone a repo
git clone https://__________
Switch to master branch
git checkout master
Download the latest changes in the project
git pull <REMOTE> <NAME OF BRANCH>
View remote repo
git remote -v
Add remote repo
git remote add <SOURCE_NAME><REPOSITORING _PATH>
Ulasan