Git 遠端提交流程

2021-09-29 20:41:56 字數 534 閱讀 8959

git config --global user.name "your name"

git config --global user.email "[email protected]"

git init

註冊github賬號 並建立倉庫

製作鑰匙

開啟gitbash

輸入命令 $ ssh-keygen -t rsa -c 「[email protected]

在使用者目錄裡找到.ssh目錄,開啟 id_rsa.pub檔案複製到github裡面

進入專案目錄新增遠端倉庫

git remote add origin [email protected]:cloudliu98/dqd.git執行git add .git commit -m "***"推送本地**到遠端

git push -u origin master -f

git 提交流程

git提交流程 1.menu remote 拉取 fetch 2.重新掃瞄 rescan 3.快取改動 stage change 4.寫注釋後提交 commit 5.menu remote 本地合併 選擇head 6.如果出現衝突,手動解決衝突,這時檔案會修改,選單 commit 快取為提交 如果沒...

gitlab提交流程

1 檢視本地的倉庫和遠端倉庫和主線倉庫 源專案倉庫 git remote v 如果沒有遠端或者主倉庫可以新增再檢視 新增遠端庫 x 代表git或者https路徑 git remote add origin x git remote add origin git github.com zsythink...

idea git 專案提交流程

希望能幫助有需要朋友 new branch 新建本地分支 local branches 本地分支 remote branches 遠端分支 剛開始要新建遠端develop分支在本地的分支 一定要有 先pull保證是最新 在去新建分支 新建分支 feature 自己名字縮寫 日期 缺省會自動切換到自己...