摘要: 一、 Git 常用命令速查 git branch 查看本地所有分支git status 查看当前状态git commit 提交git branch -a 查看所有的分支git branch -r 查看远程所有分支git commit -am "init" 提交并且加注释git remote add 阅读全文
posted @ 2017-12-21 11:17 maxiongying 阅读(185) 评论(0) 推荐(0)
摘要: Git: 学习git的网站: 设置个人环境:git config : 配置文件位置:~/.gitconfig 配置用户名:$ git config --global user.name "os-tanwn" 配置用户邮箱:$ git config --global user.email os-tan 阅读全文
posted @ 2017-12-21 09:24 maxiongying 阅读(207) 评论(0) 推荐(0)