Oh-My-Zsh 操作 Git 的快捷键
本篇文章介紹 Oh-My-Zsh 安裝,以及 git 快捷鍵。也許你已經(jīng)煩透了每天?git add .?git commit -m 'some fix'?git push...
如果操作變成這樣?ga .?gcmsg 'some fix'?gp是不是很炫酷,好吧,對于已經(jīng)使用的人沒什么新鮮感。
接下來針對好奇的 Program development engineer(程序猿),做詳細介紹。
相信 git 大家并不陌生,不熟悉 git 操作的可以看我轉載的一篇阮一峰大神的?常用 Git 命令清單,重頭戲 oh-my-zsh 大家可以看?oh-my-zsh官網(wǎng)。
Oh-My-Zsh
Oh-My-Zsh is an open source, community-driven framework for managing your ZSH configuration. It comes bundled with a ton of helpful functions, helpers, plugins, themes, and a few things that make you shout...
簡單說就是集成插件的命令行工具。針對 Mac 用戶和 Linux 用戶有很好的支持,windows 的朋友先不要急(有彩蛋)。
安裝
Mac 用戶和 Linux 用戶通過在您的終端中運行以下命令之一來安裝。可以安裝通過?curl?或?wget?命令行。
via curl
sh?-c?"$(curl?-fsSL?https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"via wget
sh?-c?"$(wget?https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh?-O?-)"windows 我推薦一個集成 shell,git,oh-my-zsh 的命令行工具Babun。點擊進入官網(wǎng)下載。當然官網(wǎng)還給出了其他炫酷功能大家可以詳細閱讀。
oh-my-zsh 有許多插件和主題大家可以去?~/.zshrc?配置
更多功能可以去官網(wǎng)閱讀,這里強烈建議大家使用,因為會提高工作效率,對于追求完美開發(fā)體驗的人幫助很大。
快捷鍵實現(xiàn)原理
這里只說 oh-my-zsh 針對 git 的改進。為什么支持縮寫的形式。
大家可能知道 git 的快捷鍵 alias,它允許我們自己配制快捷鍵。例如
alias?gst='git?status'alias?gp='git?push'alias?gp='git?push'需要配置的快捷鍵過多,如果對 git 操作了解不夠深入的人無法自行配置。那么 oh-my-zsh 是如何實現(xiàn)的呢?
其實就是用的?alias?,這里是 Github 上的鏈接?https://github.com/robbyrusse...?,通過 url 便知這里的master分支下,plugins插件目錄,git插件下的配置文件。
喜歡閱讀代碼的直接點擊鏈接查看所有快捷鍵實現(xiàn)。這里便于整理把平時工作常用的快捷鍵給大家,至于不常用的大家查看 Github 上的鏈接,可能記得多了這種對應關系容易弄混,建議大家只熟練記憶工作常有的快捷鍵,其它可以按著 git 官方文檔去做。減少出錯和不必要的麻煩。
常用快捷鍵
g?-?git gst?-?git?status gl?-?git?pull gup?-?git?pull?--rebasegp?-?git?push gd?-?git?diff gdc?-?git?diff?--cachedgdv?-?git?diff?-w?"$@"?|?view gc?-?git?commit?-v gc!?-?git?commit?-v?--amendgca?-?git?commit?-v?-a gca!?-?git?commit?-v?-a?--amendgcmsg?-?git?commit?-m gco?-?git?checkout gcm?-?git?checkout?mastergr?-?git?remote grv?-?git?remote?-v grmv?-?git?remote?renamegrrm?-?git?remote?remove gsetr?-?git?remote?set-urlgrup?-?git?remote?updategrbi?-?git?rebase?-i grbc?-?git?rebase?--continuegrba?-?git?rebase?--abortgb?-?git?branch gba?-?git?branch?-a gcount?-?git?shortlog?-sn gcl?-?git?config?--listgcp?-?git?cherry-pick glg?-?git?log?--stat?--max-count=10glgg?-?git?log?--graph?--max-count=10glgga?-?git?log?--graph?--decorate?--allglo?-?git?log?--oneline?--decorate?--colorglog?-?git?log?--oneline?--decorate?--color?--graphgss?-?git?status?-s ga?-?git?addgm?-?git?mergegrh?-?git?reset?HEADgrhh?-?git?reset?HEAD?--hardgclean?-?git?reset?--hard?&&?git?clean?-dfxgwc?-?git?whatchanged?-p?--abbrev-commit?--pretty=mediumgsts?-?git?stash?show?--textgsta?-?git?stash gstp?-?git?stash?pop gstd?-?git?stash?dropggpull?-?git?pull?origin?$(current_branch) ggpur?-?git?pull?--rebase?origin?$(current_branch)ggpush?-?git?push?origin?$(current_branch) ggpnp?-?git?pull?origin?$(current_branch)?&&?git?push?origin?$(current_branch) glp?-?_git_log_prettily就我而言已經(jīng)足夠了,當然也已經(jīng)包括了 Github 上大部分快捷鍵。
總結
好的開發(fā)工具可以大大提升工作效率,應用適當即可,過多依賴快捷鍵自動補全之類的工具時間久了基礎知識退化,導致沒有好用的工具無法編程,建議新人熟記原始命令后再嘗試快捷鍵,避免錯誤的發(fā)生(畢竟這是管理代碼工具,操作不當很可能刪除了最近?add之前或者?commit?之前的代碼快照,因為某些操作是不可逆的),親身踩過坑刪除了一天的工作,雖然重寫兩個小時就完成,但十分不爽。
轉載于:https://blog.51cto.com/chenxiaolong/1966569
總結
以上是生活随笔為你收集整理的Oh-My-Zsh 操作 Git 的快捷键的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 专注服务,而非容器
- 下一篇: 【Windows10 IoT开发系列】开