git setup
$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]"
$ git config --global push.default matching
$ git config --global alias.co checkout
$ git init
git setup
$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]"
$ git config --global push.default matching
$ git config --global alias.co checkout
$ git init
popular git command
git fetch --all
# create new branch from origin `main` branch.
git checkout -b prefix/new_branch_name origin/staging
# commit and push your work to your own branch.
git commit -m "<type>(scope?): <message>"
git push
# update new codes from origin `staging` branch.
git pull --rebase origin staging
git push --force
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us