美文网首页
hz-git快速搭建本地仓库并链接远程仓库

hz-git快速搭建本地仓库并链接远程仓库

作者: zhanghongzhen | 来源:发表于2019-06-20 18:47 被阅读0次

    创建本地仓库==》可以被git管理的仓库

    A:在 已经  创建 的 项目 git  init

    B:直接创建git项目   git init your project    在cd  进入项目  可以直接操作

    添加到缓存区==》 git add 文件名   全部提交是  加点   git  add  .

    提交并添加注释  ==》git  commit -m"注解内容”

    链接远程仓库 ===》git push remote origin url(master)

    =========================================================

    简易操作和注意事项

    远程仓库的 简单配置   A:配置用户名和邮箱,B:配置 远程  master名称

    A:  git config --global user.name

    git config  --global user.email 

    作用是每master发生改变时  可以 收到邮件  ,master查询归属可见

    B:git  remote add hz url     hz 可以代替 url 使用 

    下次使用 ==》git push hz master 

    异常处理 ==》合并分支  git merge A/B master

    远程分支拉取到本地 ==》git fetch hz master

    相关文章

      网友评论

          本文标题:hz-git快速搭建本地仓库并链接远程仓库

          本文链接:https://www.haomeiwen.com/subject/yavjqctx.html