需求:將本地不同目錄下的專案存放入github同一倉庫的不同分支下。
專案1——e:\idea2020.2.2\project\ssmbuild
專案2——e:\idea2020.2.2\project\springmvc
github命令:
//初始化本地倉庫
git init
//建立新的本地分支
git checkout -b ssm
//確認當前所在分支(應為ssm)
git branch
//檢視專案狀態(有無更新)
git status
//將專案新增
git add .
//新增commit
git commit -m "ssm框架整合——圖書管理"
//連線遠端倉庫
git remote add origin [email protected]:hhhholiday/spring.git
//將**push到遠端分支下(第乙個ssm是本地分支,第二個ssm是遠端分支,此處命令自動建立遠端分支ssm)
建立github倉庫
第一次提交的過程 1.首先在 上面建立github倉庫。2.進入到你本地工程目錄下面,開啟git bash 3.首先初始化本地倉庫,在git bash中輸入 git init 4.其次新增所有的本地檔案到本地倉庫的索引中 git add 5.從本地索引中提交到本地倉庫 git commit m 這是...
GitHub建立倉庫
0.本地安裝git 直接跳到第三步,使用下面命令更加方便 ssh keygen t rsa c 478377515 qq.com enter cd ls al cd ssh cat id rsa.pub 開啟id rsa.pub中檔案之後,複製 之後進行第四步操作 驗證 ssh t git gith...
使用Shell建立GitHub倉庫
使用shell建立github倉庫 github的 倉庫分為2種型別 使用者自己的 倉庫 組織的 倉庫 下面就使用shell指令碼建立這2種型別的 倉庫,指令碼如下 建立使用者自己的 倉庫 bin bashuser name your username project name project na...