Notifications
Clear all
Mar 01, 2023 11:36 pm
- Cara clone repo dengan spesifik branch:
git clone --branch branch_name https://url-repo
- Cara push project ke repo lain
git init git add . git commit -m "Push existing project to GitLab" git remote add source https://new-url-repo git push -u -f source new_branch_name
- cara pull repo
git pull origin branch_name
- cara mengecek pembaruan data
git fetch