GIT 備忘錄
初次使用git必須設定
git config --global user.name "bozhen"
git config --global user.email "bozhen@gmail.com"
選擇哪個目錄做 repository
git init .
新增檔案
git add .
確定提交
git commit -m "hello"
推到雲端git
git push <remote> <branch>
從雲端合併進本地
git pull == git fetch <remote name>
git merge
git pull <short name> <branch>
把別人雲端git 資料載下來
git clone <url>
新增遠端repository
顯示已存在repository
git remote -v
short name : 自行命名
git remote add <short name> <url>
git diff --staged
remove stage file
git reset HEAD --
刪除檔案
git rm '*.txt'
刪除XXXX分支
git branch -d xxxx
練習網站
https://try.github.io/levels/1/challenges/1Reference :
https://git-scm.com/book/en/v2
雷鋒到此一遊
回覆刪除