随笔分类 -  git

摘要:Git 全局设置 git config --global user.name "张文彬" git config --global user.email "zhangwenbin@linrai.com" 创建一个新存储库 git clone http://139.9.133.148:8000/cp/c 阅读全文
posted @ 2020-07-09 16:11 binjia 阅读(746) 评论(0) 推荐(0)
摘要:-- 加文件加入待提交区 git add file -- 提交,并加上描述 git commit -m '描述 -- push到远程仓库 git push origin master - - clone分支 git clone http://***/***.git -- 拉取并合并 git pull 阅读全文
posted @ 2020-07-09 14:03 binjia 阅读(245) 评论(0) 推荐(0)