git的使用步驟與心得

2021-06-21 04:05:23 字數 424 閱讀 7131

推薦乙個很好的學習git的**:git學習**

1,介紹git的安裝

在蘋果系統中,直接通過安裝xcode,附帶git直接安裝,在windows中安裝直接搜尋msysgit,裡面直接配置好linux的環境。在linux中安裝直接進入命令列,輸入

sudo apt-get install git

安裝完成後,還需要最後一步設定,在命令列輸入:

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

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

設定本台機器的使用者名稱和email資訊。

2,介紹git的主要命令

3,介紹git的使用方式

git建立與使用步驟

系統設定 git config global user.name your name git config global user.email your.email example.com進入建立的新的應用程式的根目錄,初始化乙個新倉庫 git init新增檔案 git add 檢視暫存區域有哪些檔...

git的使用步驟

1.首先開啟git.bush的黑視窗 1.將生成秘鑰的那個資料夾刪除,輸入mkdir ssh 指令生成新的資料夾 2.git config global user.name tzy 3.git config global user.email tzy1995812 163.com 4.生成秘鑰 ss...

git使用步驟

git 使用步驟 1 建分支 project team switch to new branch 2 提交分支 注意 提交分支前必須先pull project team pull 1 project team commit commit and push 2 project team remote ...