摘要: 1.创建Git 操作:工程 右键 Team Share Project Git 完成创建 2.全局设置:Window->Preference->Git->Configuration->Respository Settings->Add Entry 增加一个user.name 和user.email的 阅读全文
posted @ 2019-04-16 21:00 SteveYu 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 1.在自己的github上创建一个仓库 2.git remote add [name] [link] 使用git来增加一个link的别名 3.git push [linkname] [分支名] 4.git clone [linkname] 下载分支名字,会进行clone到当前目录下 5.邀请Coll 阅读全文
posted @ 2019-04-16 20:04 SteveYu 阅读(202) 评论(0) 推荐(0) 编辑
摘要: Git安装——略 Git本地库初始化:git init 设置签名: 用户名:Tom Email:goodMorning@aaa.com 信息保存位置,当前目录下config文件内 全局设置 查看 创建一个good.txt,用vim编辑并写入helloworld git add good.txt 移除 阅读全文
posted @ 2019-04-16 16:26 SteveYu 阅读(348) 评论(0) 推荐(1) 编辑