Egit 碼雲操作

2021-09-16 12:59:13 字數 775 閱讀 6747

egit:在eclipse中操作git

目前的eclipse基本都支援git,如果不支援 則到eclplise marktplace 搜git安裝

配置:a.team-git-configuration -郵箱 使用者名稱

b.general -network -ssh2選中 生成的ssh目錄

第一次發布

share project

加入暫存區add to index

提交到本地分支commit 

將專案推送到遠端      右鍵-team -remote -push ---

提交team-add to index

team -commit

team -push

commit時:

commit and push 或commit按鈕的區別:

commit按鈕:不能單獨的push某乙個檔案,只能push整個專案

commit and push:可以 單獨push某乙個檔案

更新team - remote -pull

git衝突的解決:

發現衝突:    進入同步檢視  右鍵——team - synchronized...

解決:新增到本地暫存區 add to index

提交到本地分支 commit

更新服務端的分支內容  到本地分支 pull

修改衝突:直接修改 或者 merge tool

(--->已經變為了普通本地檔案)

add to index

commit push

關於egit的日常操作總結

git fetch p prune p remove any remote tracking branches that no longer exist remotely prune的意思是 英 pru n 修剪 樹木等 刪除 剪去 精簡某事物,除去某事物多餘的部分 之前工作空間中的的遠端分支這麼多...

Git 碼雲日常操作

碼雲上傳 全域性設定碼雲使用者名稱 git config global user.name james 設定全域性碼雲郵箱賬號 git config global user.email 1282285801 qq.com 初始化版本,先建立忽略檔案 git init 新增所有專案檔案 git add...

碼雲 git 安裝 及 操作

大括號 內 是你需要新增的變數 小括號 是注釋 環境安裝 一 安裝 二 配置 1 註冊 生成公鑰和私鑰 git config global user.name git config global user.email 2 將生成的公鑰 上傳到伺服器 ssh keygen t rsa c 3 連線伺服...