github 使用精簡版

2021-08-21 03:10:07 字數 484 閱讀 6963

使用git bash上傳時,必須進入需要上傳的檔案的目錄,例如我要上傳的檔案在c:/1/1/1/upload 那麼我就要進入到c:/1/1/1, 然後用以下命令上傳檔案

## 刪除

git rm --cached -r useless

git commit -m "remove directory from remote repository" # must neede

git push

## 上傳

git init

git add files/

git commit -m 'readme.txt'

git remote rm origin

git remote add origin git@***x

git pull origin master

git push -u origin master

Vim使用精簡版

本文介紹vim的常用操作不包括多視窗操作與標籤分組緩衝區與多檔案編輯。一 首先介紹vim的四種模式 1.普通模式 移刪改查 2.可視模式 3.插入模式 4.命令模式 二.移動操作 shift 6 移動到字串第乙個字元 shift 4 移動到字串最後乙個字元 w w 正向移動到下乙個單詞的開頭 w不包...

AsyncTask原理精簡版

asynctask有三個主要的方法 onpreexecute doinbackground string.params onpostexecute 建立asynctask物件需要重寫乙個類繼承asynctask,因為asynctask本身是抽象類 new asynctask execute para...

Sql優化精簡版

1.select語句中避免使用 盡量應該根據業務需求按欄位進行查詢 2.刪除重覆記錄 delete from tble tb where tb.id select min id from tble ble where tb.name ble.name 3.用 替換 4.盡量多使用commit 如對大...