GitHub的Repository的使用

2021-08-25 20:47:34 字數 1145 閱讀 7707

前不久上課聽講座,才知道,svn已經開始過時,新一代的版本控制系統如github, mercurial已經悄然流行起來。

作為乙個剛剛開始用新一代版本控制系統的小白,表示目前還沒有體會到第二代版本控制的優勢,使用步驟要比傳統svn複雜的多。寫個筆記記錄一下。

安裝:無論github還是mercurial,都需要安裝。ubuntu下的安裝使用命令apt-get install git(github)

金鑰配置:

1. $ cd ~/.ssh (要先安裝ssh, apt-get install ssh)

2. $ ssh-keygen -t rsa -c "郵箱位址"

3. 系統會提示輸入 passphrase. 如果輸入的話,每次系統與git鏈結,會詢問輸入此密碼。

4. 開啟id_rsa.pub, 把公鑰copy到github**上,帳號的「ssh public keys"裡

5. $ ssh [email protected](測試配置是否成功)

6. $ git config --global user.name "firstname lastname"

7. $ git config --global user.email "email"

8. $ git config --global github.user githubusername

9. $ git config --global github.token ******x (token值在「account settings」 > 「account admin.」 中)

使用一:

1. 將respository匯入本地電腦

$ git clone [email protected]:username/responsitoryname.git

2. 新增新檔案

$  git add filename

3. commit (提交到本地版本控制)

$ git commit -m "commit info"

4. push (提交到伺服器)

$ git push

5. 更新

$ git pull

使用二:新建branch

1. git checkout -b branch_name

使用三:merge

詳細見方法:

GitHub如何刪除乙個repository倉庫

github如何刪除乙個repository 倉庫首先進入需要刪除的repository,比如我想刪除azure linux automation倉庫 可以看到右側有乙個 settings 選項 圖中用紅色框標出 點選 settings 選項進入其設定介面。2.在開啟的設定頁面的最下方,可以看到 d...

安裝Git和建立乙個倉庫repository

這裡講的是windows 安裝git 安裝完成後,在開始選單裡找到 git git bash 蹦出乙個類似命令列視窗的東西,就說明git安裝成功!安裝完成後,還需要最後一步設定,在命令列輸入 git config global user.name your name git config globa...

github 初步學習使用github

1 1 github簡明教程 1 2 對本地倉庫進行更新 1 3 超級全的github指令 2 常用命令 git add filename 新增檔案到本地index快取區 git add 新增所有檔案到index區 git commit m 將上述檔案新增到head區 git push origin...