摘要: 1. 创建本地项目 2. 码云创建项目(复制SSH地址) 3. touch README.md touch .gitignore #忽略推送到git仓库文件*.class git init #初始化项目 git status #查看哪些项目发生变化 git add . #添加所有文件 git com 阅读全文
posted @ 2017-09-11 16:14 X_XUAN 阅读(560) 评论(0) 推荐(0) 编辑
摘要: 1. 下载 https://git-for-windows.github.io/ 2. git基础配置 1. 配置用户名(提交时会引用) git config --global user.name "xiaoxuan" #请把xiaoxuan替换成自己的名字 2.配置邮箱(提交是会使用) git c 阅读全文
posted @ 2017-09-11 14:01 X_XUAN 阅读(663) 评论(0) 推荐(0) 编辑