在Linux本地建立git庫

2021-09-24 18:42:38 字數 1127 閱讀 3883

1.配置~/.gitconfig。通過這個可以改變git顯示的資訊,命令別名,編輯工具,方便後面的使用,本人的檔案顯示如下所示:

[user]

email = [email protected]

name = ljw

[alias]

ci = commit

co = checkout

br = branch

l = log

st =status

[color]

ui = auto

[color "branch"]

current = yellow reverse

local = yellow

remote = green

[color "status"]

added = yellow

changed = green

untracked = cyan

[color "diff"]

meta = yellow

frag = magenta bold

commit = yellow bold

old = red bold

new = green bold

whitespace = red reverse

[color "diff=highlight"]

oldnormal = red bold

oldhighlight = red bold

newnormal = green bold

newhighlight = green bold

[core]

editor = vim

excludesfile = ~/.gitignore

也是根據網上寫的,自己可以根據需求新增。提一點可以在.gitignore中新增不需要提交的檔案形式,防止中間檔案提交到git上保證**的清潔性。

2.在專案工程當前目錄使用git init 命令初始化當地專案工程。

3.使用git add . 命令將為跟蹤或者修改的所有檔案暫存到快取區。

4.使用git commit -m "自己這次的提交資訊描述"   命令將修改提交到本地庫。也可以用git commit編輯更多的提交資訊。

Git本地庫在哪

相信搜尋的人這個問題都知道答案只不過很迷惑,我們一般在指定目錄作為本地庫後,進行初始化本地庫的操作 git init,會在該目錄下生成.git的目錄,git目錄下存放的是本地庫相關的檔案和子目錄 這個問題我自己也作了一定的思考,我的個人理解是 我們所說的提交到本地庫,更實際的是儲存本次的更新版本或記...

Git建立本地版本倉庫

第一步 第二步 開啟git,進入控制台 第三步 輸入個人資訊,不然不能上傳,git config global user.email you example.com git config global user.name your name 第四步 依次輸入如下命令列 administrator u...

如何建立本地git倉庫

概述 建立 遠端倉庫容器 建立 原始 將 原始 掛接到 遠端倉庫容器中去 驗證詳解 建立遠端倉庫容器 第一步 新建倉庫資料夾,檔名新增.git字尾 mkdir service.git 第二步 進入這個倉庫資料夾 cd service.git 第三步 建立初始化git倉庫 git init bare ...