1.初次提交檔案到倉庫
echo "# aaaa" >> readme.md
git init
git add readme.md
git commit -m "first commit"
git remote add origin
//遠端git initrazertang
/aaa.gitgit push -u origin master
2.解決衝突
使用伺服器上的版本
git stashgit pull
git stash pop
使用本地的版本
git reset --hard
git pull
針對某個檔案
git checkout head file/to/restore
3.設定忽略提交檔案
在工程根目錄下建立.gitignore檔案
.ds_store
*.db
4.設定忽略檔案後重新整理git
git rm --cached diandushuunity4_7/assembly* -r
adb monkey指令使用筆錄
1 指令 adb shell monkey p com.mob.mobpush.demo ignore crashes ignore timeouts ignore security exceptions throttle 1000 s 500 v v v 999999999 data local ...
GitHub使用筆記
for linux 配置github 設定名字及email,用於提交時簽名。git config global user.name your name git config global user.email your email 可在主目錄下檢視配置資訊 cat gitconfig 倉庫建立 從 ...
Github使用筆記
一 git身份配置 git config global user.name tony git config global user.email tony gmali.com 二 建立 倉庫 用cd指令進入專案目錄,輸入 git init注意 1.路徑位址用 2.路徑上的資料夾名不要含中文和空格 三 ...