close
之前有個分支篇XDDD
git fetch
//查看commit 訊息
git log
//查看有更動的檔案
git status
//commit
git commit 檔案們
git commit -a (加入所有修改的檔案)
git commit -a -m 'first test'
//更新刪除的分支(確定無用的分支,不然大部分會留著追蹤)
git push origin --delete store
git fetch -p
//回復單一檔案
git checkout -- myfile
//回上一版
git reset --hard HEAD^
---
git merge origin/store_sort(要合併的分支)
解決問題
git add
git commit
git push origin 目前分支
---
//拉下來
git pull origin master
//推上去
git push origin master
備註:養成好習慣,每次推上去都要先pull下來喔
參考資料
全站熱搜
留言列表