美文网首页Git & GitHub
git环境下载和安装,注册,简单实用github desktop

git环境下载和安装,注册,简单实用github desktop

作者: 廖马儿 | 来源:发表于2017-11-28 15:44 被阅读18次

    下载安装

    Win或者Mac系统我们可以在github.com去下载客户端。

    Linux系统安装git客户端:
    使用软件管理器包来安装,使用软件管理器可以帮我们解决软件依赖关系的问题。

    yum install git -y 
    
    git --help
    

    注册github账户

    我们进入github官网。
    https://github.com/join/中,填写username,email,pwd等信息。

    克隆到本地

    使用命令行来克隆:


    图片.png

    点击右边的复制到粘贴板按钮可以复制。

    第一次提交commit
    使用status查看git状态

    使用命令git status
    可以看到未跟踪文件。可以看到在哪个分支上面。

    
    aircraftdeMacBook-Pro:test01 ldl$ git status
    On branch master
    
    Initial commit
    
    Untracked files:
      (use "git add <file>..." to include in what will be committed)
    
        test01.txt
    
    nothing added to commit but untracked files present (use "git add" to track)
    

    我们使用git add test01.txt 去添加到暂存区:

    aircraftdeMacBook-Pro:test01 ldl$ git status
    On branch master
    
    Initial commit
    
    Changes to be committed:
      (use "git rm --cached <file>..." to unstage)
    
        new file:   test01.txt
    

    Win或者Mac使用客户端操作github项目

    Set up in Desktop 按钮可以使用桌面程序打开:

    图片.png

    克隆下来后,我们在本地test01仓库中新增一个aaa.text,内容写为123,然后我们可以在github desktop上面看到:

    图片.png

    绿色的就是新增的内容。

    提交之后:
    (Commit 之后)


    图片.png

    注意右上角有一个publish,就是同步到github上去。

    图片.png

    点击publish之后:

    同步中.png

    相关文章

      网友评论

        本文标题:git环境下载和安装,注册,简单实用github desktop

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