1. git rm *,git pull會先git fetch後再git merge,更安全的做法是git fetch修改後再push;git remote rm origin
2. 為us免費git伺服器,現在可以支援5個工程?沒確定;
3. 如果git pull出現類似於如下錯誤
$ git pull
password
:you
asked me to pull without telling me which branch you
want to merge
with
,and
'branch.master.merge'in
your configuration file does
nottell me
,either
.please
specify which branch you want to
useon the command line
andtry
again (e
.g.'
git pull ').
seegit
-pull(1
)for
details.if
you often merge
with
the same branch
,you may want to
usesomething like the following
inyour configuration file:[
branch
"master"]
remote
=<
nickname
>
merge
=<
remote
-ref
>
[remote""
]url
=<
url>
fetch
=<
refspec
>
seegit
-config(1
)for
details
.我們可以通過修改配置檔案 .git/config
新增如下幾行:
[branch "master"]
remote = origin
merge = refs/heads/master
這時候,pull時會查詢到正確的url;
如果不配置,則需要打如下命令
git pull origin master;
git clone
git clone
git clone
element ui dialog使用過程中的坑
場景一 我們將dialog寫成乙個可復用的公共元件用於顯示不同內容 如 操作中的修改或新增的彈窗 之後發現dialog的遮罩將彈出層 點選修改或新增後理應由乙個彈窗顯示出來 都蓋住了,而我想要的效果是遮罩只遮住舊的視窗,而當前視窗應該完全顯示 注 是使用easyui的panel和window來包裹的...
python使用過程中問題
1.檢視python支援的 whl格式 在cmd輸入python 或者 python3.6 import pip print pip.pep425tags.get supported 2.在修改python.exe為python36.exe 任何重新命名 後,pip會報錯 fatal error i...
Spring data Jpa使用過程中遇到的坑
一定要注意如果我們在實體類中沒有配置資料表的預設值,那麼在存入和取出的時候應該設定。否則在取出的時候就會出現問題。如何通過一方獲取到多方實體 jsp中 jsp資料夾與上面servlet對映名最好不要一致,這樣會出問題 注意!乙個實體類的表id名字請設定為id,保證不出錯。問題分析 解決方法 其實一般...