Git的基本使用

2021-10-01 19:25:42 字數 1268 閱讀 6688

安裝git

注:安裝成功後,在 任意目錄下右擊會在選單中顯示「git gui here」(圖形化介面)、「git bash here」(命令視窗)選項。也可以使用本地cmd視窗敲命令(按住shift+滑鼠右擊=》w=>enter)

設定使用者資訊

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

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

建立乙個空的git倉庫或重新初始化乙個現有倉庫

執行更新

檢視提交記錄

版本回退

git reset命令用於將當前head復位到指定狀態。一般用於撤消之前的一些操作(如:git add,git commit等),可參考易百

$ git branch topic/wip      

$ git reset --hard head~3

$ git checkout topic/wip

$ git checkout feature ;# you were working in "feature" branch and 

$ work work work ;# got interrupted

$ git commit -a -m "snapshot wip"

$ git checkout master

$ fix fix fix

$ git commit ;# commit with real log

$ git checkout feature

$ git reset --soft head^ ;# go back to wip state

$ git reset

切換分支
一般用於提交尚未完成的功能,即不希望被其他開發者拉下來使用的**

將本地倉庫**提交到github
首先需要在github建立倉庫,獲取遠端倉庫位址,詳細操作見另一篇筆記,在執行commit之後再push

從遠端庫拉取**

上傳**到遠端倉庫的方式

管理跟蹤的遠端庫

為了避免每次pull和push都需要複製貼上遠端庫的位址,可以用remote配置跟蹤的遠端庫簡稱

參考自易百教程

Git的基本使用

一 準備工作 1.建立庫資料夾 repository 使用者資料夾 develop 2.cd c cd software 清屏 ctrl l 或clear cd repository 然後初始化倉庫 git init bare shared.git 在develop資料夾下建立兩個使用者 user1...

git的基本使用

1 遠端倉庫相關命令 檢出倉庫 git clone git 檢視遠端倉庫 git remote v 新增遠端倉庫 git remote add name url 刪除遠端倉庫 git remote rm name 拉取遠端倉庫 git pull remotename localbranchname ...

git的基本使用

date 2015 12 26 updated 2016 01 10 git是 管理工具,方便開發者之間的協作。現在在各個開發平台上都已經出現了git的視覺化管理客戶端,然而對於通過shell命令對 庫進行管理永遠比視覺化介面上操作來得穩妥,下面根據自身使用經驗,就git的使用規範以及常見命令做入門...