Git 操作总结

作者: 真传一句话假传万卷书 | 来源:发表于2019-02-21 00:05 被阅读34次

    一、在A机器上创建项目

    1、eclipse创建项目

    2、github创建仓库

    3、eclipse share project,连接github

    4、fetch remot from github,merge

    5、push to github

    二、B机器从git创建项目

    7、import from git

    8、选择存放路径,这里存放路径就是eclipse实际路径,没有保存到原workspace

    9、fetch from remote,然后merge ,先fetch才可以后续push,如果无法push可能是没有fetch最新代码

    10、修改编辑代码

    11、push remote

    三、A获取更新代码

    12、fetch remot from github,merge

    四、无法添加lib/jar

    13、选择lib,ignore

    14、编辑ignore文件,找到位置 添加!

    五、回滚

    15、选择项目,show history 选择提交,revert commit

    16、revert commit不能解决的reset 强制回滚(慎用)

    相关文章

      网友评论

        本文标题:Git 操作总结

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