以下為作業五內容
Git的基本操作
1.設定
git config user.email"信箱"
git config user.name"名稱"
2.改版認證;提交;推送
git add -A
git commit -m"名稱"
git push
3.分支
git branch
檢查分支
git checkout 分支名稱
切換到指定分支
git push origin 分支名稱
推送到指定分支
Github的基本操作
1.倉儲
git clone 倉儲網址
下載遠端倉儲