Git clone 项目代码步骤

2016-12-29  本文已影响460人  英勇青铜5

代码在coding.net私人仓库,Mac,个人方式:

  1. 直接在Android Studio工程目录下,创建目标项目文件夹
  2. 使用终端进入目标项目文件
  3. 将当前目标项目所在文件夹设置为与git关联文件夹,终端输入git init
  4. 使用vim创建忽略文件,终端输入vi .gitignore,写入忽略信息
  5. clone项目代码,终端输入git clone -b xxx分支名称 https://项目分支网址.git
  6. 提交代码,终端输入git push origin xxx;或者直接使用Android studio中的git工具

添加文件时,终端指令,git add *,直接添加全部


FreeLine 使用,确实很快,很强大:

dependencies {
        ...

        classpath 'com.antfortune.freeline:gradle:0.8.4'
    }

apply plugin: 'com.antfortune.freeline'
...

dependencies {
     ...
    debugCompile 'com.antfortune.freeline:runtime:0.8.4'
    releaseCompile 'com.antfortune.freeline:runtime-no-op:0.8.4'
    testCompile 'com.antfortune.freeline:runtime-no-op:0.8.4'
}


最后

在简书认识了CodingShell大神同学,上海交大的博士,我这个本科渣渣 。。。 然后大神有一个个人项目NONo笔记,由于太忙,Android部分没怎么维护,就想找到人一起来维护,我就报了名。以后打算一起利用part - time来维护,欢迎下载使用,提供意见,哈哈

共勉 :)

上一篇 下一篇

猜你喜欢

热点阅读