github常用操作總結

2021-10-13 07:43:53 字數 1887 閱讀 3515

git環境配置

git命令

ssh配置***

github上不去怎麼辦?

git日常工作流

前提:

github建立專案

進入專案目錄

進入git bash here

流程:

1.初始化倉庫 :git init

2.設定遠端倉庫:git remote add origin [email protected]:cat-heiza/test1.git

3.建立分支:git branch main

4.將檔案放到暫存區:git add .

5.將檔案放入本地倉庫:git commit -m "第一次提交"

6.將檔案推送到遠端倉庫:git push origin main

前提:

github建立專案

vs code開啟專案目錄

流程:

使用alt + shift + p進行搜尋

1.初始化儲存庫:git:init...2.新增遠端儲存庫:git:add remote...

新增遠端倉庫:

1. 使用github鏈結新增

2. github登入vscode,直接在github庫中選擇

3.暫存所有更改(更改右邊的「+」)

4.提交到本地倉庫:輸入提交備註

5.新增分支:git:create branch...

6.推送到遠端倉庫(左下角的推送)

git官網

**映象

《初識git》

.git資料夾 非常重要,記錄我們的變更內容(objects),分支(refs),日誌(logs),指令碼(hooks)

配置使用者名稱:

git config --global user.name "du"

git config --global user.email "[email protected]"

檢視配置:

git config --list

git config user.name

git config user.email

常用命令分支相關遠端倉庫檔案回退:

指令作用範圍

–hard

回退全部,包括head, index, working tree

–mixed

回退部分,包括head, index

–soft

只回退檔案比較:

ssh-keygen複製key:c:\users\杜金超\.ssh\id_rsa.pub新增到github的ssh中

搜 dns站點工具

搜github,複製位址

位址放在hosts檔案裡面去c:\windows\system32\drivers\etc\hosts

github常用操作

cd hello world 到hello world目錄,本地目錄名與repository的名字不一定相同 git init 初始化 git add 把所有檔案加入到索引 不想把所有檔案加入,可以用gitignore或add 具體檔案,見下文 git commit 提交到本地倉庫,然後會填寫更新日...

github常用操作命令

先在github上建立並寫好相關名字,描述。cd hello world 到hello world目錄,本地目錄名與repository的名字不一定相同 git init 初始化 git add 把所有檔案加入到索引 不想把所有檔案加入,可以用gitignore或add 具體檔案,見下文 git c...

github入門操作總結

1.右鍵單擊您要提交的檔案,gitbash 2.登入github賬號 git config global user.email 1580542048 qq.com git config global user.name q si bian 3.將此檔案變為本地的倉庫 git init 4.告訴git...