git開發中注意的一些事項

2021-10-05 21:57:50 字數 820 閱讀 6451

git branch -vv

git branch -a

git pull origin b#fenglebing-otn

$ git status

on branch b#yanglin

changes not staged for commit:

(use 「git add/rm …」 to update what will be committed)

(use 「git checkout – …」 to discard changes in working directory)

no changes added to commit (use 「git add」 and/or 「git commit -a」)

git push origin b#yanglin:b#fenglebing-otn

git push -u origin b#yanglin

開發中建立了自己的特性開發分支之後,切換到自己特性分支之後,使用如上命令之後自動與gitlab上的遠端分支關聯,無需手動在gitlab上建立。

java一些開發注意事項

1.servlet中不要重寫service方法,盡量根據前端請求方式重寫get或post方法,防止csrf攻擊 2.web應用中靜態資源處理辦法 我這裡使用了配置虛擬路徑,在tomcat伺服器下server.xml當前應用host標籤下新增 docbase為專案在雲伺服器中靜態資源儲存目錄,path...

一些注意事項

0.解題思路 a.普通思路 b.遞迴 bfs dfs c.動態規劃 比遞迴快 d.雙指標 比for迴圈快 如 快慢指標方法 e.用棧 1.陣列初始化 int a new int 5 a 0 預設為0.二維陣列也一樣。boolean b new boolean 5 b 0 預設為false.strin...

使用uniapp開發的一些注意事項

package.json檔案在vue專案中是在npm init也就是專案初始化的時候建立出來的,在npm install的時候,通過掃瞄package.json裡邊的配置來進行依賴安裝生成node modules檔案。另外由於在開發環境下我們不需要對package.json進行配置,所以關於執行的命...