美文网首页
gitignore忽略文件

gitignore忽略文件

作者: yuezishenyou | 来源:发表于2017-10-29 12:41 被阅读0次
    项目中已有 gitignore忽略文件

    想要再修改 gitignore忽略文件,修改的内容是失效的,在填写忽略文件的过程中,我发现在Android Studio里面,.gitignore中已经标明忽略的文件目录下的文件,当我想git push的时候还会出现在push的目录中,原因是因为在Studio的git忽略目录中,新建的文件在git中会有缓存,如果某些文件已经被纳入了版本管理中,就算是在.gitignore中已经声明了忽略路径也是不起作用的,这时候我们就应该先把本地缓存删除,然后再进行git的push,这样就不会出现忽略的文件了。git清除本地缓存命令如下:

    
    git rm -r --cached .
    git add .
    git commit -m 'update .gitignore'
    
    
    运用

    1.在用git时候,有时候需要忽略一些其他文件,不必要上传到git上去。
    2.新建一个工程(项目),名字:gitignore 完毕。
    3.利用命令,cd 工程目录下,回车。
    4.然后 输入 touch .gitignore ,回车。
    5.然后 输入 vi .gitignore ,回车。进入了 .gitignore文件里面了。
    6.输入 i 进入编辑状态,
    7.粘贴

    # Xcode
    #
    # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
    ## Build generated
    build/
    DerivedData/
    ## Various settings
    *.xcuserstate
    *.DS_Store
    *.pbxuser
    !default.pbxuser
    *.mode1v3
    !default.mode1v3
    *.mode2v3
    !default.mode2v3
    *.perspectivev3
    !default.perspectivev3
    xcuserdata/
    ## Other
    *.moved-aside
    *.xccheckout
    *.xcscmblueprint
    ## Obj-C/Swift specific
    *.hmap
    *.ipa
    *.dSYM.zip
    *.dSYM
    # CocoaPods
    #
    # We recommend against adding the Pods directory to your .gitignore. However
    # you should judge for yourself, the pros and cons are mentioned at:
    # https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
    #
    Pods/
    # Carthage
    #
    # Add this line if you want to avoid checking in source code from Carthage dependencies.
    # Carthage/Checkouts
    Carthage/Build
    # fastlane
    #
    # It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
    # screenshots whenever they are needed.
    # For more information about the recommended setup visit:
    # https://docs.fastlane.tools/best-practices/source-control/#source-control
    fastlane/report.xml
    fastlane/Preview.html
    fastlane/screenshots
    fastlane/test_output
    # Code Injection
    #
    # After new code Injection tools there's a generated folder /iOSInjectionProject
    # https://github.com/johnno1962/injectionforxcode
    iOSInjectionProject/
    

    8.然后 输入 esc :wq! 回车 跳出vi
    9.下面利用git 命令 把项目推送到远程仓库。
    10.也就是把忽略文件加好了。(纯给自己看的,同学们若有不理解的,可加扣扣993056895)
    11.dome 地址 这里

    Android的忽略文件

    参考文献:
    Android开发中对.gitignore文件的配置
    我用作者的那个,而不用网络流传的那个。

    # Gradle directory
    .gradle/
    build/
    
    # files for the dex VM
    *.dex
    
    #built application files
    *.apk
    *.ap_
    
    # Java class files
    *.class
    
    # Local configuration file (sdk path, etc)
    local.properties
    
    .idea/workspace.xml
    .idea/libraries
    .idea/gradle.xml
    .idea/misc.xml
    
    # OSX files
    .DS_Store
    
    captures/
    # generated files(studio中应该不需要)
    bin/
    gen/
    
    # Windows thumbnail db
    Thumbs.db
    

    重新整理忽略文件

    git rm -r --cached .  #清除缓存
    git add . #重新trace file
    git commit -m "update .gitignore" #提交和注释
    git push origin master #可选,如果需要同步到remote上的话
    

    相关文章

      网友评论

          本文标题:gitignore忽略文件

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