2020年3月23日

github記事

https://ithelp.ithome.com.tw/articles/10191301

git 環境設定
git config --global user.name "username"
git config --global user.email "xxxx@gmail.com"

産生一個新分支
git branch 分支名稱
切換到分支
git checkout 分支名稱

和master merge起來
git merge分支名稱

git的情況
git status

修改些檔案
git diff

隱藏檔案
編輯 .gitignore 加入要隱藏的資料夾或檔案名稱
node_modules/

 遠端資料庫名稱
git remote

 註記事項
git commit -m "modify ifttt "
新增
git add -A
git add .





 檔案上傳到github
 git push -u origin master

超過100MB時
git filter-branch --tree-filter 'rm -rf path/to/your/file' HEAD
git push


推不上去,強推
git push -f
先拉再推 
git pull --rebase 

沒有留言: