Git 教程 4-git 常用命令
记录 git 的常用命令
git 常用命令
1. 初始化仓库
1 | git init |
2. 添加文件到 git
1 | git add * |
3. 提交文件到暂存库
1 | git commit -m 'init' |
4. 关联本地库远程库
1 | git remote add origin https://gitee.com/savecoding/xxx.git |
5. 提交代码到远程库
1 | git push origin master |
6. 创建标签
1 | git tag -a <tagname> -m "标签注释" |
7. 提交标签到远程库
1 | git push origin <tagname> |
github 常见错误
尝试禁用代理
1 | fatal: unable to access 'https://github.com/xxxx.git/': Failed to connect to github.com port 443: Connection timed out |
1 | git config --global --unset http.proxy |