<output id="qn6qe"></output>

    1. <output id="qn6qe"><tt id="qn6qe"></tt></output>
    2. <strike id="qn6qe"></strike>

      亚洲 日本 欧洲 欧美 视频,日韩中文字幕有码av,一本一道av中文字幕无码,国产线播放免费人成视频播放,人妻少妇偷人无码视频,日夜啪啪一区二区三区,国产尤物精品自在拍视频首页,久热这里只有精品12

      oh my zsh的git快捷鍵列表

      g=git
      ga='git add'
      gaa='git add --all'
      gam='git am'
      gama='git am --abort'
      gamc='git am --continue'
      gams='git am --skip'
      gamscp='git am --show-current-patch'
      gap='git apply'
      gapa='git add --patch'
      gapt='git apply --3way'
      gau='git add --update'
      gav='git add --verbose'
      gb='git branch'
      gbD='git branch --delete --force'
      gba='git branch --all'
      gbd='git branch --delete'
      gbg='LANG=C git branch -vv | grep ": gone\]"'
      gbgD='LANG=C git branch --no-color -vv | grep ": gone\]" | cut -c 3- | awk '\''{print $1}'\'' | xargs git branch -D'
      gbgd='LANG=C git branch --no-color -vv | grep ": gone\]" | cut -c 3- | awk '\''{print $1}'\'' | xargs git branch -d'
      gbl='git blame -w'
      gbm='git branch --move'
      gbnm='git branch --no-merged'
      gbr='git branch --remote'
      gbs='git bisect'
      gbsb='git bisect bad'
      gbsg='git bisect good'
      gbsn='git bisect new'
      gbso='git bisect old'
      gbsr='git bisect reset'
      gbss='git bisect start'
      gc='git commit --verbose'
      'gc!'='git commit --verbose --amend'
      gcB='git checkout -B'
      gca='git commit --verbose --all'
      'gca!'='git commit --verbose --all --amend'
      gcam='git commit --all --message'
      'gcan!'='git commit --verbose --all --no-edit --amend'
      'gcann!'='git commit --verbose --all --date=now --no-edit --amend'
      'gcans!'='git commit --verbose --all --signoff --no-edit --amend'
      gcas='git commit --all --signoff'
      gcasm='git commit --all --signoff --message'
      gcb='git checkout -b'
      gcd='git checkout $(git_develop_branch)'
      gcf='git config --list'
      gcl='git clone --recurse-submodules'
      gclean='git clean --interactive -d'
      gclf='git clone --recursive --shallow-submodules --filter=blob:none --also-filter-submodules'
      gcm='git checkout $(git_main_branch)'
      gcmsg='git commit --message'
      gcn='git commit --verbose --no-edit'
      'gcn!'='git commit --verbose --no-edit --amend'
      gco='git checkout'
      gcor='git checkout --recurse-submodules'
      gcount='git shortlog --summary --numbered'
      gcp='git cherry-pick'
      gcpa='git cherry-pick --abort'
      gcpc='git cherry-pick --continue'
      gcs='git commit --gpg-sign'
      gcsm='git commit --signoff --message'
      gcss='git commit --gpg-sign --signoff'
      gcssm='git commit --gpg-sign --signoff --message'
      gd='git diff'
      gdca='git diff --cached'
      gdct='git describe --tags $(git rev-list --tags --max-count=1)'
      gdcw='git diff --cached --word-diff'
      gds='git diff --staged'
      gdt='git diff-tree --no-commit-id --name-only -r'
      gdup='git diff @{upstream}'
      gdw='git diff --word-diff'
      gf='git fetch'
      gfa='git fetch --all --tags --prune --jobs=10'
      gfg='git ls-files | grep'
      gfo='git fetch origin'
      gg='git gui citool'
      gga='git gui citool --amend'
      ggpull='git pull origin "$(git_current_branch)"'
      ggpush='git push origin "$(git_current_branch)"'
      ggsup='git branch --set-upstream-to=origin/$(git_current_branch)'
      ghh='git help'
      gignore='git update-index --assume-unchanged'
      gignored='git ls-files -v | grep "^[[:lower:]]"'
      git-svn-dcommit-push='git svn dcommit && git push github $(git_main_branch):svntrunk'
      gk='\gitk --all --branches &!'
      gke='\gitk --all $(git log --walk-reflogs --pretty=%h) &!'
      gl='git pull'
      glg='git log --stat'
      glgg='git log --graph'
      glgga='git log --graph --decorate --all'
      glgm='git log --graph --max-count=10'
      glgp='git log --stat --patch'
      glo='git log --oneline --decorate'
      glod='git log --graph --pretty="%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ad) %C(bold blue)<%an>%Creset"'
      glods='git log --graph --pretty="%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ad) %C(bold blue)<%an>%Creset" --date=short'
      glog='git log --oneline --decorate --graph'
      gloga='git log --oneline --decorate --graph --all'
      glol='git log --graph --pretty="%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset"'
      glola='git log --graph --pretty="%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset" --all'
      glols='git log --graph --pretty="%Cred%h%Creset -%C(auto)%d%Creset %s %Cgreen(%ar) %C(bold blue)<%an>%Creset" --stat'
      glp=_git_log_prettily
      gluc='git pull upstream $(git_current_branch)'
      glum='git pull upstream $(git_main_branch)'
      gm='git merge'
      gma='git merge --abort'
      gmc='git merge --continue'
      gmff='git merge --ff-only'
      gmom='git merge origin/$(git_main_branch)'
      gms='git merge --squash'
      gmtl='git mergetool --no-prompt'
      gmtlvim='git mergetool --no-prompt --tool=vimdiff'
      gmum='git merge upstream/$(git_main_branch)'
      gp='git push'
      gpd='git push --dry-run'
      gpf='git push --force-with-lease --force-if-includes'
      'gpf!'='git push --force'
      gpoat='git push origin --all && git push origin --tags'
      gpod='git push origin --delete'
      gpr='git pull --rebase'
      gpra='git pull --rebase --autostash'
      gprav='git pull --rebase --autostash -v'
      gpristine='git reset --hard && git clean --force -dfx'
      gprom='git pull --rebase origin $(git_main_branch)'
      gpromi='git pull --rebase=interactive origin $(git_main_branch)'
      gprum='git pull --rebase upstream $(git_main_branch)'
      gprumi='git pull --rebase=interactive upstream $(git_main_branch)'
      gprv='git pull --rebase -v'
      gpsup='git push --set-upstream origin $(git_current_branch)'
      gpsupf='git push --set-upstream origin $(git_current_branch) --force-with-lease --force-if-includes'
      gpu='git push upstream'
      gpv='git push --verbose'
      gr='git remote'
      gra='git remote add'
      grb='git rebase'
      grba='git rebase --abort'
      grbc='git rebase --continue'
      grbd='git rebase $(git_develop_branch)'
      grbi='git rebase --interactive'
      grbm='git rebase $(git_main_branch)'
      grbo='git rebase --onto'
      grbom='git rebase origin/$(git_main_branch)'
      grbs='git rebase --skip'
      grbum='git rebase upstream/$(git_main_branch)'
      grep='grep --color=auto --exclude-dir={.bzr,CVS,.git,.hg,.svn,.idea,.tox,.venv,venv}'
      grev='git revert'
      greva='git revert --abort'
      grevc='git revert --continue'
      grf='git reflog'
      grh='git reset'
      grhh='git reset --hard'
      grhk='git reset --keep'
      grhs='git reset --soft'
      grm='git rm'
      grmc='git rm --cached'
      grmv='git remote rename'
      groh='git reset origin/$(git_current_branch) --hard'
      grrm='git remote remove'
      grs='git restore'
      grset='git remote set-url'
      grss='git restore --source'
      grst='git restore --staged'
      grt='cd "$(git rev-parse --show-toplevel || echo .)"'
      gru='git reset --'
      grup='git remote update'
      grv='git remote --verbose'
      gsb='git status --short --branch'
      gsd='git svn dcommit'
      gsh='git show'
      gsi='git submodule init'
      gsps='git show --pretty=short --show-signature'
      gsr='git svn rebase'
      gss='git status --short'
      gst='git status'
      gsta='git stash push'
      gstaa='git stash apply'
      gstall='git stash --all'
      gstc='git stash clear'
      gstd='git stash drop'
      gstl='git stash list'
      gstp='git stash pop'
      gsts='git stash show --patch'
      gsu='git submodule update'
      gsw='git switch'
      gswc='git switch --create'
      gswd='git switch $(git_develop_branch)'
      gswm='git switch $(git_main_branch)'
      gta='git tag --annotate'
      gtl='gtl(){ git tag --sort=-v:refname -n --list "${1}*" }; noglob gtl'
      gts='git tag --sign'
      gtv='git tag | sort -V'
      gunignore='git update-index --no-assume-unchanged'
      gunwip='git rev-list --max-count=1 --format="%s" HEAD | grep -q "\--wip--" && git reset HEAD~1'
      gwch='git whatchanged -p --abbrev-commit --pretty=medium'
      gwip='git add -A; git rm $(git ls-files --deleted) 2> /dev/null; git commit --no-verify --no-gpg-sign --message "--wip-- [skip ci]"'
      gwipe='git reset --hard && git clean --force -df'
      gwt='git worktree'
      gwta='git worktree add'
      gwtls='git worktree list'
      gwtmv='git worktree move'
      gwtrm='git worktree remove'

      posted @ 2025-02-14 18:19  Questions張  閱讀(75)  評論(0)    收藏  舉報
      主站蜘蛛池模板: 欧美日韩在线亚洲二区综二| 广宁县| 欧美白妞大战非洲大炮| 免费99精品国产人妻自在现线| 性欧美老人牲交xxxxx视频| 免费人妻无码不卡中文字幕18禁| 99久久精品看国产一区| 91孕妇精品一区二区三区| 黑巨人与欧美精品一区| 国产成人精品亚洲一区二区 | 微拍福利一区二区三区| 国产成人一区二区三区免费| 97一期涩涩97片久久久久久久| 日本免费精品| 激情综合色综合啪啪开心| 国产精品午夜福利在线观看| 中国熟妇毛多多裸交视频| 香港| julia无码中文字幕一区| 久久精品无码鲁网中文电影| 日韩中文字幕亚洲精品| 性色在线视频精品| 亚洲男女一区二区三区| 国产仑乱无码内谢| 一区二区三区放荡人妻| XXXXXHD亚洲日本HD| 隆德县| 国产成人卡2卡3卡4乱码| 人妻精品动漫H无码中字| 板桥市| 免费的特黄特色大片| 三级网站视频在在线播放| 欧美日韩精品一区二区视频| 欧美成人午夜精品免费福利| 国产在线高清视频无码| 日本福利一区二区精品| 国内精品伊人久久久久av| 国产精品亚欧美一区二区三区| 2021国产成人精品久久| av新版天堂在线观看| 日本亚洲一级中文字幕|