git工具

戀蝶雪櫻發表於2015-04-24

1.Git Bash常用命令:

pwd    當前工作目錄

clear   清屏

ls   列舉當前目錄下的檔案及資料夾

cd 更改目錄

mkdir   建立目錄

touch   建立空檔案

cp 拷貝

rm 移除

mv   移動檔案,可用來對檔案重新命名

date   當前日期

echo 回顯

​2.基本Git命令-1:

​git add 

git commit

git push

git add . add all new files

git add -u updates tracking forfiles that changed names or were deleted

git add A does both 

git commit -m "message"

git push

branches

git checkout -b branchname-->create a branch  

git branch    see what branch you are on 

git checkout master   switch back to the master type

3.常用檔案操作命令:

git status 檢視檔案狀態

git add  跟蹤新檔案或暫存已修改檔案

git diff  檢視檔案變化

git  commit –m <</span>msg> 提交更新

git rm file  移除檔案

git  log 檢視提交日誌

git commit –ammend    修改最後一次提交

git reset HEAD  取消已暫存檔案

相關文章