《開發工具》git

從git上拉去項目到本地

 1. 初始化 找一個目錄 進入git命令行,目錄名爲項目名稱
git init
 2. 本地要與origin master建立連接(git@10.*.*.*:IntelligentProduct/qualityInspectionSystem.git爲遠程倉庫鏈接)
git remote add origin git@10.*.*.*:IntelligentProduct/qualityInspectionSystem.git
 3. 把遠程分支拉到本地 develop_1902_test是一個分支
git fetch origin develop_1902_test
 4.在本地創建分支dev並切換到該分支
git chechout -b dev origin/develop_1902_test
 5. 把某個分支上的內容都拉取到本地
git pull origin develop_1902_test

idea配置git

https://blog.csdn.net/liulu164212/article/details/82865881

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章