xxxxxxxxxx
# git pull request
git pull origin <name_of_the_branch_you_want_to_pull>
# example1
git pull origin main
# example2
git pull origin testBranch1
xxxxxxxxxx
# Navigate to the local repository folder
cd /path/to/local/repository
# Perform a git pull from the default remote repository (origin) and branch (master)
git pull
# Alternatively, if you want to specify the remote and branch explicitly:
git pull <remote-name> <branch-name>
xxxxxxxxxx
ga='git add'
gc='git commit'
gpsup='git push --set-upstream origin $(git_current_branch)'
xxxxxxxxxx
gpp='f() { ga . && gc -m $1 && gpsup && sleep 1 && gh pr create --fill };f'