附上一些git的常見命令:
• gitremote add origin [email protected]:myaccount/myproject.git
• git push-u origin master
• gitinit--------建立repository
• git 命令--help-----------檢視幫助命令
• touchfilename
• gitstatus------檢視狀態
• git addfilename--------加入檔案到臨時的東東
• gitcommit -m "add the file filename" -----commit到repository中
• gitlog------檢視日誌
• echo"ddd" > filename ------修改filename(先清空)
• git addfilename
• gitcommit -m "filename changed"
• git diff版本一 版本二--------比較不同
• gitreset 版本號--------返回到版本號
• gitrevert 版本號--------撤銷到版本號
• gitcheckout filename------撤銷當下沒有git add的動作
• gitbranch-------參看分支資訊
• gitbranch develop-----建立分支
• gitcheckout develop-----切換分支
git merge develop------合併分支(將develop merge到master上,develop不變)
**:
常用Git命令
下面是我在開發中常用的git命令 1.配置git git config global add user.email git config global add user.name 2.建立新的專案 git init git add git commit a m git remote add orig...
常用Git命令
建立管理倉庫 git initadd和commit git add readme.txt git commit m wrote a readme file 簡略版log git log pretty oneline abbrev commit當前狀態 git status撤銷更改 git check...
常用git命令
修改新增至stage bash git add stage進版本 git commit m your message here 差異對比 git diff head 回退本地檔案 git checkout 若有stage撤銷至stage,沒有則撤銷至head 撤銷stage git reset he...