git(三):第一次github瞭解使用

居老師的狗子發表於2019-03-08

第一次使用github,看了一下使用說明,建立第一個repository,以後還要多學習。

 

一、Github建立一個新倉庫
······Creat a new repository 建立一個新倉庫,點選github右上角的+裡面的new repository
  在repository name欄中輸入倉庫的名稱
  description 欄中可以設定倉庫的說明
  piblic(公開)通用 private(非公開)收費
  勾選Initialize this repository with a README ,如果想向GitHub新增手中已有的Git倉庫,建議不要勾選
  Add.gitignore 下拉框中選擇要使用的框架
  Add a license選擇新增許可協議檔案
  點選create repository按鈕,
  完成倉庫的建立   
 
二、將本地檔案託管到github
 
 開啟git bash進入到專案路徑,也可以直接在專案裡開啟git bash
$ git remote add origin 倉庫地址
//新增一個遠端的專案
$ git push -u origin master

 

//獲取一個遠端檔案
$ git pull origin master

這裡有一個問題git clone和git pull的區別。

二、建立github分支

//管理分支  顯示所有分支表,同時確認當前所在的分支
$ git branch

 

 
//建立分支(必須寫gh-pages)
$ git branch gh-pages

 

//切換到分支gh-pages
$ git checkout gh-pages

 

//同步專案到分支
$ git push -u origin gh-pages
//刪除分支
$ git branch -d  branch_name

 

 

 

相關文章