1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
1,登录 gh auth login 2,查看当前认证状态 gh auth status 3,查看所有工程 gh repo list jntrixpro 4,下载指定工程 CD D:\workplacecli gh repo clone https://github.com/jntrixpro/Quick_Order gh repo clone jntrixpro/Quick_Order 6,上传代码前的确认 git status git diff 7,上传代码 git add . git commit -m "新增登录模块" git push origin main 8,登出当前账户 gh auth logout |