Git常用命令

2022-07-15 16:48:14 字數 1633 閱讀 1843

pwd:/users/zhanglx/workspace/gittest/

git init --bare --shared

git clone /users/zhanglx/workspace/gittest/
this is equal to "clone"

mkdir myrepo

cd myrepo/

git init

git remote add origin /users/zhanglx/workspace/gittest/

git branch test

git checkout test

typegit branchto check which branch you are working on.

git檔案的狀態分為untracked和tracked, untracked檔案是指新建的檔案,尚未被git管理起來。

tracked又分為三種狀態:

已提交(committed),已修改(modified)和已暫存(staged)。已提交表示檔案已被安全地儲存在本地資料庫中了;已修改表示修改了某個檔案,但沒有提交儲存;已暫存表示把已修改的檔案放在下次提交時要儲存的清單中。

git remote -v or git remote show origin檢視相關資訊git push origin master將commit的**,push到github上。git pull origin master將github上的**,update到本地。

git delete file然後commit的,將無法恢復。rm file, 可以通過git checkout -- file進行恢復。git rm --cached file,只是在快取中刪除,

恢復更改的檔案 git checkout — //未git add的檔案

git reset head //已經git add的檔案,可以用這個取消add,然後用上一條命令恢復

git push origin master

git pull origin master

ssh-keygen

生成的ssh key檔案儲存在中~/.ssh/id_rsa.pub

接著拷貝.ssh/id_rsa.pub檔案內的所以內容

開啟github帳號管理中的新增ssh key介面的步驟如下:

1. 登入github

2. 點選右上方的accounting settings圖示

3. 選擇 ssh key

4. 點選 add ssh key

tag$ git tag v1.4 -m 『version 1.4′

$ git tag

$ git show v1.4

$git checkout tag_name    //在當前分支上 取出 tag_name 的版本

$git checkout -b branch_name tag_name //從 tag 建立乙個分支,然後就和普通的 git 操作一樣了

常用命令 Git 常用命令大全

安裝教程可參照 廖雪峰老師的安裝教程。git config 在git中,使用git config 命令來配置 git 的配置檔案,git配置級別主要有3類 1 倉庫級別 local 本地 git 倉庫級別配置檔案,作用於當前倉庫。優先順序最高 2 使用者級別 global,全域性配置檔案,作用於所有...

git 常用命令

檢視是否存在檔案需要上傳 git status git add git commit m 建立遠端倉庫 git remote add origin 116.255.146.153 ruby cd work daily project.git 更新git fetch 116.255.146.153 r...

git常用命令

詳細 1,git log p 命令來顯示每一次提交與其父節點提交內容之間快照的差異。2,為了檢視載入 staged 而並未提交 not committed 的內容差異,可以使用 git diff stage 命令 在git 1.6之前的版本中,使用 cached 適應情形 在執行git commit...