Github使用記錄

2021-09-25 12:36:56 字數 942 閱讀 5163

git add .

git commit -m [message]

git push [repository name] [branch name]

git status

git stash list

git stash clear

git stash

git stash pop [stash@]

git pull [repository name] [branch name]

git init

git clone [url]

git remote -v

git remote add [repository name] [url]

git branch -v

git branch [branch name] 新建分支

git branch -d [branch name]

git checkout [branch name] 切換分支

git checkout -b [branch name] 新建分支並切換到目標分支上

git merge [branch name] 合併目標分支到當前分支上

github提供pr功能用來進行專案組外成員貢獻自己的**,也可以用來進行專案組內的code review。

上面兩種情況主要的區別在於pr發起人是否具有repository的提交許可權:如果有許可權,那麼本地新建分支push、pr時選擇[new branch] -> [master]即可;如果沒有,則需要fork該**倉庫到自己的github,然後修改自己github中的倉庫、在目標倉庫發起pr、選擇[self repository.branch] -> [target branch]。

pr支援compare and merge/review and comments/delete extra branch等操作。

pr也可以通過命令列進行操作。

github使用記錄

首先。得去官網上註冊上乙個賬號,我也下了乙個github的軟體。但是網頁版也可以建立 的。這裡,我覺得最讓人腦闊疼的是它全是英文!不過也體現了谷歌瀏覽器的強大,讓我想起來了node裡不是有個jade是強依賴性嘛,我覺得我對谷歌的感情就是這樣的。不過還是認為多用用英文的,剛開始磕磕絆絆,習慣以後也是可...

GitHub使用簡單記錄

根據 gotgithub 所做的一些整理 在github的頁面中可以使用鍵盤快捷鍵 1 按下問號 會在彈出視窗顯示當前頁面可用的快捷鍵。2 在專案的 瀏覽頁按下字母 w 彈出分支切換選單。3 按下字母 t 開啟目錄樹中檔案查詢和過濾。有2種辦法 1 在github建立新專案 2 從已有版本庫建立,然...

git指令 Github使用記錄

git clone 將該專案轉殖到本地,位置在cmd的當前目錄下。git add 將當前目錄下的檔案都新增到暫存區域。git add 將路徑檔案新增到暫存區域。git commit m 提交暫存區域的內容並 附帶一條資訊。git push 推送到目標伺服器中。git branch 檢視本地分支。gi...