Eclispe專案上傳到GitHub

2022-09-13 19:54:22 字數 1270 閱讀 6599

步驟 1 : 在git上新建倉庫具體步驟都在這;符號「+」--> new repository-->輸入名字-->create repository-->得到git位址(https/ssh) 

步驟 2 : 在eclipse中建立乙個j**a專案

file-->new j**a project-->package-->class-->test.j**a

步驟 3 : share project

右鍵專案->team->share project-->

配置倉庫,點選一下 use or create repository in parent folder of project-->根據下圖完成建立倉庫

步驟 4 : 提交專案

右鍵專案->team->commit

使用ecplise git commit時出現;there are no stages files;(異常解決)

步驟 5 : 設定提交資訊

步驟 6 : 設定git引數

store in secure store勾上,表示eclipse會保持你的賬號密碼。

步驟 7 : 指定分支

預設就好master

步驟 8 : 提交

出現這種異常的話:點選

成功:

步驟 9 : github

本地專案上傳到git

前提 1 本地電腦已經安裝好git,正常使用git命令 2 已經在git上建立對應倉庫 先進入專案資料夾,通過命令 git init 把這個目錄變成git可以管理的倉庫 git init 把檔案新增到版本庫中,使用命令 git add 新增到暫存區裡面去,不要忘記後面的小數點 意為新增資料夾下的所有...

本地idea專案上傳到Git

本文參考 使用intellij idea選單建立本地git倉庫 vcs import into version control create git repository 在彈出的的視窗中選擇當前專案 提交全部需要管理的檔案到新建立的本地倉庫master分支 在windows中開啟命令列視窗cmd,...

將本地專案上傳到git

首先保證電腦有秘鑰 首先在git上面新建乙個空專案,建完翻到下面也會有相應的提示步驟,然後開啟你本地的git bash here 沒有的安裝一下git 然後執行命令 1 git config global user.name 名字 2 git config global user.email ema...