git的基本使用

2021-10-10 06:39:01 字數 1029 閱讀 5334

# 當前目錄新建乙個git**庫

git init

git clone [url]

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

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

git remote add origin
git remote
git remote rm origin
# 恢復暫存區的所有檔案到工作區  

git checkout .

# 重置暫存區與工作區,與最新的commit保持一致

git reset --hard

ssh-keygen -t rsa -c "[email protected]"
(這裡注意看公鑰和私鑰的位置,使用ssh新增遠端倉庫的時候需要用)

# 回退到上乙個版本

git reset --hard head^^

# 回退到指定版本

git reset --hard 86eefa

# 版本號可用 git log命令檢視

# 檢視遠端分支

git branch -a

# 檢視本地分支

git branch

# 新增新分支,使用新分支push的時候,github會自動建立新分支

git checkout -b 新分支名

# 切換分支

git checkout 分支名

# 刪除遠端分支

git push origin :遠端分支的名

# 刪除本地分支

git branch -d 本地分支的名

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的使用規範以及常見命令做入門...