如果是本地倉庫, 使用小烏龜什麼的定位到要檢視的提交就可以了。
如果是遠端倉庫, 進入提交記錄詳情,在鏈結後面新增.patch
即可。
在 github 的 emails 中設定。
第一步, 裸轉殖
git clone --bare # 倉庫位址 .git 可以不要
cd repo.git # 進入到該目錄, 注意有 .git
第二步, 修改本地專案的郵箱和使用者名稱
#!/bin/sh
git filter-branch --env-filter '
old_email="舊的郵件位址"
correct_name="正確的使用者名稱"
correct_email="正確的郵件位址"
if [ "$git_committer_email" = "$old_email" ]
then
export git_committer_name="$correct_name"
export git_committer_email="$correct_email"
fiif [ "$git_author_email" = "$old_email" ]
then
export git_author_name="$correct_name"
export git_author_email="$correct_email"
fi' --tag-name-filter cat -- --branches --tags
第三步, 更新到遠端
git push --force --tags origin 'refs/heads/*'
全域性修改新增--global
引數。
檢視
git config user.email
git config user.name
修改
git config user.email "郵箱位址"
# git config --global user.email "郵箱位址" # 全域性
修改作者日期為提交日期:
git filter-branch --env-filter '
if [ "$git_committer_date" != "$git_author_date" ]
then
export git_committer_date="$git_author_date"
fi' --tag-name-filter cat -- --branches --tags
Github 提交不顯示綠格仔
記錄一下在 github 上提交 之後能看到自己的提交,但是卻一直沒有顯示綠格仔,原因是本地 git 的配置郵箱和 github 上面的郵箱不一致導致的。先進入建立的分支,然後通過 git 命令檢視提交資訊 root contos7 ssh git log通過上述命令就能看到提交的郵箱或使用者名稱。...
zblog php首頁不顯示指定分類文章的方法
2016 11 23 16 36 網頁設計 標籤 z blogphp 852 實現的方法 通過函式過濾指定分類,重建分頁後,掛接filter plugin viewlist core介面。介面位置 zb system function c system event.php,有興趣可自行研究。教程 1...
設定hexo首頁只顯示部分摘要(不顯示全文)
本文首發於github.io 本文針對next主題,不確保對於其它主題有效 但從修改模式來看,是有效的 next預設是會顯示全文的,這樣顯然很不方便,因此需要一些方法去只顯示前面一部分。首先需要在next主題的 config.yml中把設定開啟 預設安裝時就開啟了 automatically exc...