vs code 使用git

1.下載git https://git-scm.com/nginx

2. git 全局設置 git

  git config --global user.name "xxxx"github

  git config --global user.email "xxxx@xx.com"web

3.建立git 本地倉庫bash

進入指定文件夾 執行git init ssh

添加遠程 地址  git remote add origin https://gitee.com/richard1015/ljlxnewh5.gitui

拉去遠程數據 git pullurl

4.此時用vscode 打開該文件夾 發現web 下什麼也沒有spa

   點擊左下角master 3d

 

 遠程項目 master 遠程 同步到本地

 

 

 5.使用vs code 提交 代碼

 提交時輸入帳號密碼(你的git帳號密碼)

 

6.每次提交代碼時都會輸入帳號密碼

下面介紹2種解決辦法

https 方式每次都要輸入密碼,按照以下設置便可輸入一次就不用再手輸入密碼的困擾並且又享受 https 帶來的極速

設置記住密碼(默認15分鐘):

git config --global credential.helper cache 

若是想本身設置時間,能夠這樣作:

git config credential.helper 'cache --timeout=3600' 

這樣就設置一個小時以後失效

長期存儲密碼:

git config --global credential.helper store

增長遠程地址的時候帶上密碼也是能夠的。(推薦)

http://yourname:password@gitee.com/name/project.git 

補充:使用客戶端也能夠存儲密碼的。

若是你正在使用ssh並且想體驗https帶來的高速,那麼你能夠這樣作: 切換到項目目錄下 :

cd projectfile/

移除遠程ssh方式的倉庫地址

git remote rm origin

增長https遠程倉庫地址

git remote add origin http://yourname:password@gitee.com/name/project.git 

Update:

Git-for-Windows 默認帶有 Git-Credential-Manager-for-Windows

Linux 和 Mac 用戶能夠使用: Git-Credential-Manager-for-Mac-and-Linux

安裝文檔: https://github.com/Microsoft/Git-Credential-Manager-for-Mac-and-Linux/blob/master/Install.md

搞定,enjoy the speed!

相關文章
相關標籤/搜索