瀏覽器 firefox 5
出錯範例:
jQuery('img.bbcode_img')錯誤訊息
rootjQuery is undefined解決方案:
jQuery('body').find('img.bbcode_img')原因不明...
jQuery('img.bbcode_img')錯誤訊息
rootjQuery is undefined解決方案:
jQuery('body').find('img.bbcode_img')原因不明...
function elem(tag, content, idt, idv, class) {修改為
function elem(tag, content, idt, idv, vclass) {由此可見 Greasemonkey 可能將 class 列為關鍵字 不允許被使用在變數命名中
.inline-ad 被隱藏了會回傳 true
jQuery('.inline-ad').adblocked()
回傳所有被隱藏的物件
jQuery('*').filter_adblocked()
http://code.google.com/p/msysgit/downloads/list有兩種版本的安裝程式
fatal: The remote end hung up unexpectedly不用太緊張將這個視窗關閉之後
* error: Couldn't update submodule doc/git/html (HTML help will not work).
INSTALLATION ABORTEDt repository in D:/msysgit/doc/git/html/.git/
https://git.wiki.kernel.org/index.php/MSysGit:InstallMSysGit當中說到 使用以下指令可以重新編譯安裝程式
/share/msysGit-fullinstall/release.sh VERSION但是實際上在現在的版本 1.7.x 下這個指令已經不存在
/share/msysGit/full/release.sh VERSION其中 VERSION 必須要自己指定編譯出來的版本編號是什麼(例如: 1.7.5.3.msysgit.0)
msysGit-fullinstall-1.7.5.3.msysgit.0.exe
套件安裝網址: https://addons.mozilla.org/zh-TW/firefox/addon/adblock-plusAdblock Plus 是一套我在大多的電腦上都會安裝的套件
rqqqnzprfyozzyfluebf {原來 imageshack.us 在我訂閱的眾多過濾條件集裡面有被列為過濾條件
-moz–binding: url(chrome://global/content/bindings/general.xml#foobarbazdummy) !important;}
||imageshack.us^$third-party這個條件的意思是 所有不在 imageshack.us 網站內的 imageshack.us 內容全都隱藏
Domain Unregistered To View, register at: bit.ly/imageshack-domain
git submodule add -- "git@github.com:bluelovers/Scophp.git" "discuzx/upload/extensions/libs/scophp"不過當想要指定分支時就傷腦筋了
git commit -a
指令來複寫git submodule add -b branch -- "git@github.com:bluelovers/Scophp.git" "discuzx/upload/extensions/libs/scophp"可以很方便很簡單的在第一次增加子模組的時候 就直接指定想要的分支
fatal: Not a git repository (or any of the parent directories): .git剛剛出現藍白畫面當機後
ref: refs/heads/develop之類的內容(紅字的部分為固定內容)
HKEY_LOCAL_MACHINE\software\Microsoft\Windows\CurrentVersion\Explorer\ShellIconOverlayIdentifiers將底下以 dropbox 開頭的子機碼刪除
Security error" code: "1000這個錯誤訊息(用firebug查看)
$(elem_array),delay(500, function(){那麼 $(this).fadeIn(700) 將會失效
$(this).fadeIn(700);
})
如果你想用腳本的方式修改大量的提交,還有一個重寫歷史的選項可以用——例如,全局性地修改電子郵件地址或者將一個文件從所有提交中刪除。這個命令是filter-branch
,這個會大面積地修改你的歷史,所以你很有可能不該去用它,除非你的項目尚未公開,沒有其他人在你準備修改的提交的基礎上工作。儘管如此,這個可以非常有用。你會學習一些常見用法,借此對它的能力有所認識。
用 google 可以搜尋到一大堆能將 目錄取出來變成乾淨的分支 的資料$ git filter-branch --prune-empty -f --index-filter "git-rm-ex Valid.php"相關需要用到的 git-rm-ex 為
#!/bin/sh以上指令中的 -f 選項 可以自己取捨是否要使用
# 不知道為什麼嘗試性的加上 echo 後就正常搭配 git filter-branch 而沒有因為錯誤中斷
# $ git filter-branch --prune-empty -f --index-filter "git-rm-ex Valid.php"
git ls-files --no-empty-directory -- | egrep --invert-match $1 |
xargs git rm --cached --ignore-unmatch -f -- | echo
[remote "origin"]
fetch = +refs/heads/*:refs/remotes/origin/*
fetch = +refs/notes/*:refs/notes/*
push = +refs/notes/*:refs/notes/*
#!/bin/sh當 notes 成功 push 遠端 github 後可在 github 上看到 notes 在黃色框內
echo u can use git notes-push or git-notes-push
echo push notes now.......
git push origin refs/notes/*
$ git flow hotfix start test也就是......
There is an existing hotfix branch (crlf_to_lf_only). Finish that one first.
# read user-specific settings, possibly overriding anything above由以上代碼可知 如果再 windows 使用者資料夾下增加 .bash_profile 這個檔案的話就會被包含進去 msysgit 的環境設定內
if [ -e ~/.bashrc ]; then
. ~/.bashrc
elif [ -e ~/.bash_profile ]; then
. ~/.bash_profile
elif [ -e /etc/bash_profile ]; then
. /etc/bash_profile
fi
# utf-8 確認可在 cherry-pick 時保有中文訊息接著又再一次的使用 git cherry-pick 指令
export LESSCHARSET=utf-8
echo <<<EOL會想PO這篇主要是
=============
$filed
=============
$_SERVER[$filed]
gethostbyaddr: $iphost
EOL;
echo <<<EOL
echo <<<"EOL"
contrib\msysgit-install.cmd來做安裝但是顯示錯誤
make install來做安裝
git flow init時卻又出現一些錯誤訊息
local\bin/gitflow-shFlags: line 1: shFlags/src/shflags: No such file or directory接下來考慮到可能是安裝時的隱藏錯誤
local\bin/git-flow: line 78: FLAGS: command not found
contrib\msysgit-install.cmd這次使用一般的DOS來執行
MsysGit installation directory not found.由訊息可知無法正確判斷GIT路徑
Try to give the directory name on the command line:
msysgit-install "C:\Program Files\Git"
bin\getopt.exe not found.於是忽然想到在本文開頭提到的 bin.zip 資料夾內有 getopt.exe 這個檔案
You have to install this file manually. See the GitFlow README.
contrib\msysgit-install.cmd "D:\msysgit"這次就沒有錯誤訊息了
<? ?>即使原本的位置位於 "" 字串內,仍然要小心注意
/*來做處理
註解內容
*/
try change 'upload' is submodule and submodule's branch is 'branch_from_scorpio'指令
git rm -r ucenter
git submodule add -b branch_from_scorpio -- "git@github.com:bluelovers/ucenter.git" "ucenter"
以下完全假設已經將 子目錄 從倉庫內分離獨立出來成為一個新的倉庫由於直接刪除子目錄,然後增加子模組會產生錯誤訊息
或已經有可以取代現有子目錄的倉庫存在
#在倉庫內移除子目錄接下來提交就可以完美解決了
git rm -r subdirectory
#然後新增子模組
git submodule add -- "git@github.com:bluelovers/ucenter.git" "subdirectory"
芋頭需去皮後方可食用,可每每剝芋頭皮的過程,會引起人手接觸部位皮膚奇癢難忍,此後即使用肥皂清洗、用水沖洗似乎也不能見效。從網路上蒐集到的解決方案
剝芋頭皮時之所以會使人皮膚發癢,是因為芋頭裡含有二種叫作皂角甙(黏液蛋白)的物質,這種物質對人體皮膚具有刺激作用,但這種剌激尚不足以引起人的痛覺,所以便表現出那麼一種令人刺癢難受的感覺。
削完芋頭後,用冷水洗手,只會越洗越癢,連擦肥皂也沒用!止癢可以用加熱和加酸等辦法,而最好的方法是削芋頭前在手上塗點醋
%AppData%\Mozilla\Firefox\Profiles然後找 類似 %AppData%\Mozilla\Firefox\Profiles\[user_profiles.xxxxxx]\menuedit.rdf 的檔案就可以了
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js" type="text/javascript" charset="UTF-8"></script>但是在 blogger 時,這樣卻會與blogger原本的JS不相容產生部分錯誤
<script type="text/javascript" charset="UTF-8">這樣就可以安心的使用 jquery 而不會對 blogger 造成影響
$$ = jQuery.noConflict(true);
</script>
如此一來就能成功更改分支的名稱git branch -m old_branch new_branch