0
我想創建一個bash腳本來在瀏覽器窗口中打開一個Github拉請求。在BASH腳本中獲取git repo名稱和github用戶名?
這是我需要運行命令:
開放https://github.com/ParentOwner/RepoName /比較/ 發展 ... JoshuaSoileau:CurrentBranch
凡事大膽需要動態。
我需要弄清楚如何拉下面的東西在BASH:
RepoName - name of the repo
develop - ARGUMENT to my bash script
JoshuaSoileau - github username of the current user
CurrentBranch - name of the currently checked out git branch.
我知道如何做到以下幾點:
RepoName - ??
develop - $1 argument in my bash script
JoshuaSoileau - ??
CurrentBranch - $(git rev-parse --abbrev-ref HEAD)
我怎麼拉1. RepoName
和BASH腳本中的2. Current github username
?
這是我到目前爲止有:
git-open-merge() {
open https://github.com/ParentOwner/??/compare/$1...??:$(git rev-parse --abbrev-ref HEAD)
}
,這就是所謂這樣的:
git-open-merge develop