zoukankan      html  css  js  c++  java
  • Git的使用方法

    打开Git Bash Here

    在终端输入:

    $ sudo apt-get install git

     

    安装完成后还需在终端设置一下自己的姓名和邮箱

    在终端输入:

    $ git config --global user.name "Your Name"
    $ git config --global user.email "email@example.com"

    在项目的根目录下的.gitignore的文件中保存以下代码

    # Built application files
    *.apk
    *.ap_
    
    # Files for the Dalvik VM
    *.dex
    
    # Java class files
    *.class
    
    # Generated files
    bin/
    gen/
    out/
    
    # Gradle files
    .gradle/
    build/
    
    # Local configuration file (sdk path, etc)
    local.properties
    
    # Proguard folder generated by Eclipse
    proguard/
    
    # Log Files
    *.log
    
    # Android Studio Navigation editor temp files
    .navigation/
    
    # Android Studio captures folder
    captures/
    
    # Intellij
    *.iml
    
    # Keystore files
    *.jks

    此文件是会时常更新的,所以你要保证尽可能是最新版本

    .gitignore文件的作用是为了告诉Git哪些文件不需要添加到版本管理中

    在你需要管理的项目文件夹下打开此路径的终端输入:

    $ git init

    该命令是将此目录变为一个Git可管理的仓库

    $ git add ./

    该命令是将你的项目添加到仓库,如果没有任何提示,则说明添加成功了

    $ git commit

    该命令是将你所添加的项目提交到仓库

    二  、

    在www.github.com网站中注册一个账号,在网页的右上角找到new repository点进去后给你的仓库起个名字,然后点create repository,这样你的远程仓库就建好了

    接下来需要将在本地提交完成的仓库添加到远程库,根据提示在终端输入:

    git remote add origin https://用户名:密码@github.com/用户名/Text.git

    最后我们需要将内容推送到远程库,在终端输入:

    git push -u origin master

    每个仓库在第一次推送,需要加-u参数,以后就不用加了

  • 相关阅读:
    VirtualBox中的Linux读取Windows共享目录
    Windows10资源管理器去掉左侧“下载、文档、图片、音乐、视频”等目录
    在Eclipse ee中成功使用jQuery UI插件
    (medium)LeetCode .Implement Trie (Prefix Tree)
    (*medium)LeetCode 211.Add and Search Word
    (easy)LeetCode 257.Binary Tree Paths
    2016 360笔试 编程题 2
    2016 360笔试 编程题1
    (番外)使用DFS和BFS实现拓扑排序
    (medium)LeetCode 210.Course Schedule II
  • 原文地址:https://www.cnblogs.com/yboli/p/5671503.html
Copyright © 2011-2022 走看看