git免賬號密碼操作與git的常用命令

2021-10-05 03:49:29 字數 1607 閱讀 2601

方法1:

進入c盤的使用者目錄中 c:\users\***,建立.gitconfig檔案 新增如下**:

[user]

email = 賬號

name = 密碼

方法2:

進入專案的根目錄,修改隱藏目錄git裡的config檔案

在url的//後,gitlab(或者github)前新增 賬號:密碼:

git常用命令

git clone  url
新增當前目錄的所有檔案到暫存區

git add .
提交暫存區到倉庫區

git commit -m  「提交資訊」
建立並切換分支

git checkout  分支名
切換分支

git checkout -b  分支名

**檢視所有的遠端分支*

*```powershell

git branch -a

將遠端指定分支拉取到本地當前分支上

git pull origin 遠端分支名
將本地當前分支 推送到 與本地當前分支同名的遠端分支上(注意:pull是遠端在前本地在後,push相反)

git push origin 本地分支名
將本地分支與遠端同名分支相關聯,操作後pull或push時可以省去 。

git push --

set-upstream origin 《本地分支名》

處理merging狀態

git reset --hard head
合併分支的**:首先切換到分支;

git checkout hotfix_20200421
使用git pull 把分支**pull下來;

git pull origin hotfix_20200421
切換到dev分支;

git checkout devlop
把分支的**merge到dev分支;

git merge hotfix_20200416
將**推到dev分支上

git push

檢視git 賬號密碼和修改git賬號密碼

檢視使用者名稱 git config user.name 檢視密碼 git config user.password 檢視配置資訊 git config list 修改使用者名稱 git config global user.name x 新的使用者名稱 修改密碼git config global ...

git記住賬號密碼

涉及到記住密碼的方式,只適用於http s 方式,記住密碼的幾種方式 https 方式每次都要輸入密碼,按照如下設定即可輸入一次就不用再手輸入密碼的困擾而且又享受 https 帶來的極速 按照以下設定記住密碼十五分鐘 git config global credential.helper cache...

Git記住賬號密碼

git儲存使用者名稱密碼的方式 1 設定記住密碼 預設15分鐘 git config global credential.helper cache git config credential.helper cache2 如果想自己設定時間,可以這樣做 git config credential.he...