有沒有經常敲錯命令?比如git status?status這個單詞真心不好記。
如果敲git st就表示git status那就簡單多了,當然這種偷懶的辦法我們是極力贊成的。
我們只需要敲一行命令,告訴git,以後st就表示status:
$ git config --global alias.st status
好了,現在敲git st看看效果。
當然還有別的命令可以簡寫,很多人都用co表示checkout,ci表示commit,br表示branch:
$ git config --global alias.co checkout
$ git config --global alias.ci commit
$ git config --global alias.br branch
以後提交就可以簡寫成:
$ git ci -m "bala bala bala..."
--global引數是全域性引數,也就是這些命令在這台電腦的所有git倉庫下都有用。
在撤銷修改一節中,我們知道,命令git reset head file可以把暫存區的修改撤銷掉(unstage),重新放回工作區。既然是乙個unstage操作,就可以配置乙個unstage別名:
$ git config --global alias.unstage 'reset head'
當你敲入命令:
$ git unstage test.py
實際上git執行的是:
$ git reset head test.py
配置乙個git last,讓其顯示最後一次提交資訊:
$ git config --global alias.last 'log -1'
這樣,用git last就能顯示最近一次的提交:
$ git last
commit adca45d317e6d8a4b23f9811c3d7b7f0f180bfe2
merge: bd6ae48 291bea8
author: michael liao
date: thu aug 22 22:49:22 2013 +0800
merge & fix hello.py
甚至還有人喪心病狂地把lg配置成了:
git config --global alias.lg "log --color --graph --pretty=format:'%cred%h%creset -%c(yellow)%d%creset %s %cgreen(%cr) %c(bold blue)%creset' --abbrev-commit"
來看看git lg的效果:
為什麼不早點告訴我?別激動,咱不是為了多記幾個英文單詞嘛!
配置檔案
配置git的時候,加上--global是針對當前使用者起作用的,如果不加,那只針對當前的倉庫起作用。
配置檔案放哪了?每個倉庫的git配置檔案都放在.git/config檔案中:
$ cat .git/config
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
precomposeunicode = true
[remote "origin"]
url = [email protected]:michaelliao/learngit.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
remote = origin
merge = refs/heads/master
[alias]
last = log -1
別名就在[alias]後面,要刪除別名,直接把對應的行刪掉即可。
而當前使用者的git配置檔案放在使用者主目錄下的乙個隱藏檔案.gitconfig中:
$ cat .gitconfig
[alias]
co = checkout
ci = commit
br = branch
st = status
[user]
name = your name
email = [email protected]
配置別名也可以直接修改這個檔案,如果改錯了,可以刪掉檔案重新通過命令配置。
小結給git配置好別名,就可以輸入命令時偷個懶。我們鼓勵偷懶。
python 配置環境變數
今天在使用pycharm建立django專案的時候總是出錯,總是顯示專案資料夾中存在已經建好的manager.py,很是無奈,於是重新裝了一下python,裝完之後,發現配置環境變數的時候又遇到了問題,使用命令提示符來檢測,始終顯示沒有配置好環境變數,去網上搜尋了教程也無法解決這個問題。於是又重新裝...
python的環境變數配置
windows下安裝python 手動新增環境變數 以2.7版本舉例 2 安裝 預設安裝路徑 c python36 3 配置環境變數 右鍵計算機 屬性 高階系統設定 高階 環境變數 python安裝目錄追加到變值值中,用 分割 如 原來的值 c python36,切記前面有分號 windows下安裝...
如何配置python環境變數
1.首先需要在系統中註冊python環境變數 假設python的安裝路徑為c python2.5,開啟 我的電腦 屬性 高階 環境變數 系統變數 在path的值後面追加 c python25 記得加上 分號 與前面的值分隔開 上述環境變數設定成功之後,就可以在命令列直接使用python命令。或執行 ...