git checkout -b dev 這個git checkout命令加上-b引數表示建立並切換
git branch -a--- 檢視遠端分支
git branch ---- 檢視本地分支
git branch test ---- 建立分支
git checkout test --- 切換分支到test
git branch -d ***xx -- 刪除本地分支
git merge branchname --- 把分支"branchname"合併到了當前分支裡面
git tag -a v1.01 -m "relase version 1.01" ---- 提交標籤到遠端倉庫
git push origin --tags
註解:就像git push origin master 把本地修改提交到遠端倉庫一樣,-tags可以把本地的打的標籤全部提交到遠端倉庫。
git checkout -b tset v0.1.0 這個時候就會在分支上進行開發,之後可以切換到主線合併
快速覆寫方法 control + o
向下移動一行 option + shift + down
注釋** command + /
快速構成** command + n
快捷向下複製行 command + d
快捷最近開啟 command + e
檔案方法結構command + f12
格式化** command + option + l
if/try等包裹** command + option + t
查詢呼叫的位置 control + option + h
生成子方法 command+option +m
(1)配置環境變數
sudo vim /etc/profile
在檔案的最後追加一下以下內容
##set path for android sdk tools
export path=$path:/home/hu/android/sdk/tools/
export path=$path:/home/hu/android/sdk/platform-tools/
(2)儲存後,同步更新
source /etc/profile
可以這麼理解android:nohistory="true"對activity行為的影響:當該activity螢幕不可見時,相當於android系統呼叫activity的finish()方法結束了該activity。
android:excludefromrecents="true",設定為true後,當使用者按了「最近任務列表」時候,該task不會出現在最近任務列表中,可達到隱藏應用的目的。
android 執行緒同步 conditionvariable的用法
殺死本程序:
intent startmain = new intent(intent.action_main);
startmain.addcategory(intent.category_home);
startmain.setflags(intent.flag_activity_new_task);
startactivity(startmain);
system.exit(0);
工作中一些工具的使用!
工作中經常會用到壓縮跟替換命令,用到的時候網上查一下,用完也就忘了。對於工具我的態度是 會用就好。但經常的查詢搜尋搞的我也很煩,還是做個筆記吧,自己做的也是最適合自己的,等以後什麼也記不住了,至少還有存世的東西。嘻嘻 將當前目錄下所有檔案壓縮成rootfs.tar.bz2 tar tar jcvf ...
工作中一些簡單但是有用的SQL
1.刪除乙個表中重複的記錄,只留一條記錄。delete from fcm phonenum e where e.rowid select min x.rowid from fcm phonenum x where x.phonenum e.phonenum 2.給乙個表做備份 create tabl...
工作中的一些認識
作為乙個 的板磚者,都說不上自己是乙個前端程式設計師,還是差太多,為什麼會這樣呢?無論在做什麼,態度永遠是第一位。開發都是乙個乙個的小團隊,為什麼都是兩個肩膀乙個腦袋,同樣是同樣的框架,人家的腦袋瓜,就是比你有靈光呢?我個人認為 首先,自己不必人家聰明,那就多付出點努力,老話不是說笨鳥先飛嘛,努力不...