git免登入提交 push 與拉取 pull

2021-08-19 19:07:44 字數 626 閱讀 4546

linux / mac / msys2

cd ~

touch .git-credentials

vim .git-credentials

https://你的使用者名稱:你的密碼@github.com

在終端下輸入:

git config --global credential.helper store

開啟~/.gitconfig檔案,會發現多了一項:

[credential]

helper = store

windows方法:

echo https://你的使用者名稱:你的密碼@github.com >系統碟符:\users\登入名\.git-credentials

不知道的可以嘗試

echo https://你的使用者名稱:你的密碼@github.com >%userprofile%\.git-credentials

在終端下輸入:

git config --global credential.helper store

開啟~/.gitconfig檔案,會發現多了一項:

[credential]

helper = store

完成

git 拉取合併分支 git拉取與合併

檢視分支 git branch a 所有 新建遠端分支 1,新建乙個本地分支並切換 git checkout b xiaozhiju 2,新建的本地分支push到遠端伺服器,遠端分支與本地分支同名 當然可以隨意起名 git push origin xiaozhiju 本地分支名 xiaozhiju ...

mac 免密碼登入伺服器與免密碼git提交

本地執行 生成key ssh keygen t rsa c 你的git註冊郵箱 b 4096 複製本地 id rsa.pub cat ssh id rsa.pub 將cat的內容複製 伺服器執行 伺服器新增 vim root ssh authorized keys 將複製的內容貼上到authoriz...

git 常見操作命令。提交,拉取,快取。

使用git倉庫存 現在可以使用很多任務具進行操作,類似tortoise,還有很多 工具 webstorm,eclipse等 自身也是支援git,svn 提交,只需要簡單到配置即可,這裡暫不一一說明如何配置。git add 把本地修改的檔案加到暫存區git commit m 提交備註 把暫存區檔案提交...