git 一些記錄

2021-08-03 16:03:27 字數 538 閱讀 3623

1、git commit -a

此時會進入vim編輯模式,可以i鍵輸入提交備註,完成備註後通過esc退出編輯模式,並輸入:q!不儲存並退出,或者:wq!儲存並退出。

2、出現如下報錯時:

if no other git process is currently running, this probably means a

git process crashed in this repository earlier. make sure no other git

process is running and remove the file manually to continue.

解決方法:

rm -f ./.git/index.lock (記住,前面沒有git)

3、git config –list

此時會顯示所有配置檔案資訊

可以通過如:git config user.name 格式檢視具體

git一些常用操作記錄

1 配置全域性使用者 git config global user.name your name git config global user.email email example.com global引數,用了這個引數,表示你這台機器上所有的git倉庫都會使用這個配置 2 專案倉庫建立 git ...

一些常用的git命令記錄

git checkout 用暫存區中 filename 檔案來覆蓋工作區中的 filename 檔案。相當於取消自上次執行 git add filename 以來 如果執行過 的本地修改。git diff 此命令比較的是工作目錄 working tree 和暫存區域快照 index 之間的差異,也就...

個人使用Git的一些記錄

個人使用git的一些記錄 情況描述 不同的分支都在行進,需要在一定時間內進行分支的合併。先看目前分支對應的上游分支 git branch vv 顯示的藍色框內的是遠端的上游分支 假設branch1要merge到branch2中。先checkout到branch2中 git pull 拉取最新的狀態 ...