美文网首页
git bash 常用命令简写

git bash 常用命令简写

作者: 环球探测 | 来源:发表于2024-09-02 09:53 被阅读0次
alias gl='git pull'
alias gaa='git add --all'
alias gb='git branch'
alias gbD='git branch -D'
alias gcm='git checkout master'
alias gcd='git checkout dev'
alias gcmsg='git commit -m'
alias gco='git checkout'
alias gd='git diff'
alias gp='git push'
alias grmv='git remote -v'
alias gst='git stash'
alias gstp='git stash pop'
alias gsh='git show'
alias gs='git status'

个人常用。 记得 source ~/.bash_profile

相关文章

  • git cmd

    GitHub Commands git 常用命令 注册 SSH key 以便git bash 可以push req...

  • git的常用命令及vim 使用教程

    git的常用命令 - 首先来看看在windows系统上git bash的界面 - git的简单命令 pwd: 查看...

  • git使用中的总结

    一张图掌握Git Git Bash常用命令 修改git commit 最后一次提交的注释信息 以及如何退出git ...

  • git常用命令

    常用命令 进入D盘找到git安装目录执行git-bash.exe 重新定位git地址进入项目目录执行命令 参考 W...

  • Git bash 下操作文件及文件夹命令

    git bash 下操作文件及文件夹命令 1, cd : change directory的简写,改变目录的意思,...

  • GitHub版本控制

    1、常用命令简表 常用命令详细版本 2、本地的版本库创建 ①Git Shell中bash命令行创建文件夹(wind...

  • 常用命令行及explainshell.com的简单使用

    学习目标 常用命令行的使用 explainshell.com的使用技巧 打开git Bash,执行下面命令 通过 ...

  • git相关教程汇总

    1. git常用命令 git常用命令总结git常用命令讲解 2. git教程相关网站 廖雪峰的git教程猴子都能懂...

  • GIT Bash常用命令

    mkdir: XX (创建一个空目录 XX指目录名) pwd: 显示当前目录的路径 git ini...

  • git bash常用命令

    一、回退某个版本 $ git log $ git reset --hard 8375c4c277a2db73f38...

网友评论

      本文标题:git bash 常用命令简写

      本文链接:https://www.haomeiwen.com/subject/kfjhljtx.html