github基本使用命令筆記

2022-09-04 13:18:16 字數 402 閱讀 9807

1、git init 建立git倉庫,檔案中多乙個.git

2、git add. 新增檔案

3、git commit -m "test" 提交檔案到倉庫

4、git remote add origin [email protected]:個人github名/倉庫名.git 新增後,遠端庫名叫origin

5、git push origin master  本地倉推送到遠端上

檢視待新增到本地倉庫的檔案

6、git pull --rebase origin master 同步遠端檔案,比如reademe.md檔案

7、git status 推送狀態

錯誤:remote origin already exists

1、git remote rm origin  解決

github實用命令

table of contents 初始化倉庫 轉殖倉庫 遠端拉取 新增檔案 提交本地分支 指定提交檔案 推送到遠端分支 合併分支 檢視修改 版本回滾 撤銷遠端 合併多次提交 git initgit clone 位址git c core.quotepath false c log.showsigna...

git基本使用命令

執行git clone szgit 10.240.x.xx mt6572 jb3 b y uxx c git clone szgit 10.240.x.xx mt6572 jb3 modem b y uxx c 在mt6572 jb3目錄下執行git branch a 檢視當前分支 git chec...

git基本使用命令

git init git add codefile git commit m commit description.git log 檢視版本提交歷史 git reflog 檢視歷史命令 git reset hard commit id版本回滾 head代表當前版本,head 表示前乙個版本 場景1 ...