git 版本管理工具说明

         

  1. $ git init                  (初始化本地仓库,会生成.git 文件夹  .git 文件夹里存储了所有的版本信息、标记等内容)
  2. $ git add .               (从本地仓库增删,结果将会保存到本机的缓存里面)
  3. $ git commit -m " 第  次提交 "   (提交,把本机缓存中的内容提交到本机的 HEAD 里面)
  4. $ git remote add origin  http:\.......  (把本地仓库和远程仓库关联起来。如果不执行这个命令的话,每次 push 的时候都需要指定远程服务器的地址)
  5. $ git push origin master                    (把本地master分支的最新修改推送至远端 (如GitHub))
  6. $ git pull origin master                 (将远端仓库pull最新代码)
  7. Username for 'https://github.com': yjlgithup
    To https://github.com/yjlgithup/bu.git
     ! [rejected]        master -> master (non-fast-forward)
    error: failed to push some refs to 'https://github.com/yjlgithup/bu.git'
    hint: Updates were rejected because the tip of your current branch is behind
    hint: its remote counterpart. Integrate the remote changes (e.g.
    hint: 'git pull ...') before pushing again.
    hint: See the 'Note about fast-forwards' in 'git push --help' for details.

    如果出错:git pull --rebase origin master

 提交代码到远程分支

  1.git checkout -b ' two '  (切换并创建一个分支)

  2.git add .    (提交分支代码)

  3.git commit -m ''   (提交 修改信息)

  4.git remote add origin http://....  (连接远程仓库)

  5.git pull origin master  (重新拉一边代码)

  6.git push origin  two   (提交分支代码)

githup 上面会出现你心创建的分支,并且提交的代码

拉取分支代码到本地

当我想从远程拉取到一条本地不存在的分支 代码

  1.git init (初始化)

  2.git remote add origin http://....   (连接远程仓库)

  3.git clone (首次拉取代码)

  4.git pull origin master

  5.git fetch  

  6.git checkout -b (本地分支名称 two )origin/(远程分支名称 two)

推荐学习资料:

  廖雪峰的官方教程Git  http://www.liaoxuefeng.com/wiki/Git

原文地址:https://www.cnblogs.com/yuerdong/p/7837741.html