1. 程式人生 > >Git簡略教程

Git簡略教程

git pull 一個 存在 upstream -- config span 版本 推送

Git使用教程

廠裏大部分後端應用的版本控制工具為SVN,前端代碼則更習慣於Git,好久不用Git有些生疏,復習一下,效率就是生命。

1.拉取遠程分支到本地

  git clone + 代碼地址 + 分支名稱

git clone [email protected].alibaba-inc.com:xxxx/myApp.git release/tree_1

2.創建本地分支

git checkout -b <new_branch> -t <remote_branch>

3.本地分支追蹤遠程分支

  創建本地分支test

git branch test

  

  命令一:創建本地分支test,並讓本地test分支追蹤遠程倉庫origin中test分支, -t or --track

git branch -t test origin/test

  

  命令二:若本地分支test已存在,則使用如下命令,--set_upstream-to指定追蹤的遠程分支

git branch --set-upstream-to=origin/feature/20170420_test_1 test

4.將本地代碼推送到遠程分支

git push origin 本地分支名稱:遠程分支名稱

  例: git push origin test : feature/20170420_test_1

  若本地分支和遠程分支的追蹤關系已經建立好,則可以直接git push

5.查看本地分支追蹤遠程分支情況

git branch -vv

   查看所有分支情況 git branch -a

6.拉取服務器上代碼更新

git fetch origin master:test

創建一個本地分支test,並從遠程服務器上拉取origin倉庫的master分支到本地。

  提交代碼前,拉取服務器上更新到本地,並自動與本地代碼合並:

git pull [email protected]

:alibaba-inc:xxxx/myApp.git

註意第一次使用Git時,需要先配置用戶郵箱,初始化

git config --global user.email "[email protected]"

git init 在代碼路徑下初始化當前目錄

Git簡略教程